I've built an C# UWP app showing some HTML content I get from WordPress inside a WebView.
Now I'd like to show some ads inside that WebView below the HTML content. I don't want to use the C# Ads SDK.
According to the docs, I need to manually add the WinJS library (which I've done) and also install and reference the Microsoft Advertising SDK. However, since the project is a C# UWP app I can't reference the Microsoft Advertising SDK for JavaScript
.
<!-- Advertising required references -->
<script src="//Microsoft.Advertising.JavaScript/ad.js"></script>
How can I reference the necessary ad.js file? Can I somehow download or extract this from the SDK? Or is there another, official way to do this?