Skip to content

Commit 1709b21

Browse files
committed
Windows 10 RTM Release - January 2016 Update
1 parent 215408b commit 1709b21

File tree

88 files changed

+4003
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+4003
-108
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
189189
<td><a href="Samples/WebView">WebView control (HTML)</a></td>
190190
</tr>
191191
<tr>
192+
<td><a href="Samples/XamlWebView">WebView control (XAML)</a></td>
192193
<td><a href="Samples/ResizeAppView">Window resizing</a></td>
193194
</tr>
194195
</table>
@@ -445,31 +446,32 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
445446
<th colspan="3" align="left">Networking and web services</th>
446447
</tr>
447448
<tr>
449+
<td><a href="Samples/Advertising">Advertising</a></td>
448450
<td><a href="Samples/BackgroundTransfer">Background transfer</a></td>
449451
<td><a href="Samples/DatagramSocket">DatagramSocket</a></td>
450-
<td><a href="Samples/EasProtocol">Exchange Active Sync (EAS)</a></td>
451452
</tr>
452453
<tr>
454+
<td><a href="Samples/EasProtocol">Exchange Active Sync (EAS)</a></td>
453455
<td><a href="Samples/HttpClient">HttpClient</a></td>
454456
<td><a href="Samples/Json">JSON</a></td>
455-
<td><a href="Samples/MobileBroadband">Mobile broadband</a></td>
456457
</tr>
457458
<tr>
459+
<td><a href="Samples/MobileBroadband">Mobile broadband</a></td>
458460
<td><a href="Samples/RadioManager">Radios</a></td>
459461
<td><a href="Samples/FeedReader">RSS reader end-to-end (JavaScript)</a></td>
460-
<td><a href="Samples/SocketActivityStreamSocket">Socket activity trigger stream socket</a></td>
461462
</tr>
462463
<tr>
464+
<td><a href="Samples/SocketActivityStreamSocket">Socket activity trigger stream socket</a></td>
463465
<td><a href="Samples/StreamSocket">StreamSocket</a></td>
464466
<td><a href="Samples/Syndication">Syndication</a></td>
465-
<td><a href="Samples/UssdProtcol">USSD protocol</a></td>
466467
</tr>
467468
<tr>
469+
<td><a href="Samples/UssdProtcol">USSD protocol</a></td>
468470
<td><a href="Samples/WebSocket">WebSocket</a></td>
469471
<td><a href="Samples/WiFiDirect">Wi-Fi Direct</a></td>
470-
<td><a href="Samples/WiFiDirectServices">Wi-Fi Direct services</a></td>
471472
</tr>
472473
<tr>
474+
<td><a href="Samples/WiFiDirectServices">Wi-Fi Direct services</a></td>
473475
<td><a href="Samples/WiFiScan">Wi-Fi scanning</a></td>
474476
</tr>
475477
</table>

Samples/Advertising/README.md

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!---
2+
category: NetworkingAndWebServices
3+
samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=722924
4+
--->
5+
6+
# Advertising sample
7+
8+
This sample shows how to use the Microsoft Advertising SDK (Microsoft.Advertising) to show display ads and interstitial ads using the following methods:
9+
- Creating an ad control to show display ads using only XAML / HTML markup
10+
- Creating an ad control to show display ads programatically
11+
- Creating an ad control to show interstitial video ads programatically
12+
13+
## Prerequisites
14+
15+
This sample requires the [Microsoft Advertising SDK Libraries for XAML or JavaScript](http://go.microsoft.com/fwlink/?LinkID=619694).
16+
[Download it here](http://go.microsoft.com/fwlink/p/?LinkId=518026).
17+
It also requires the [internet client capability](https://msdn.microsoft.com/library/windows/apps/mt270968#general-use_capabilities) to be added to the manifest.
18+
19+
When you incorporate this sample into your own app,
20+
obtain your own ApplicationId and AdUnitId from the Dev Center.
21+
See [Monetize with Ads](https://msdn.microsoft.com/en-us/library/windows/apps/mt170658.aspx) on MSDN
22+
for more details.
23+
24+
## Related topics
25+
26+
### Samples
27+
28+
[Store in-app purchase](/Samples/Store)
29+
30+
## Reference
31+
32+
[Microsoft Advertising Client SDK API Reference](https://msdn.microsoft.com/en-US/library/mt313151(v=msads.30).aspx)
33+
34+
### See also
35+
36+
[Getting Started](https://msdn.microsoft.com/en-US/library/mt313197(v=msads.30).aspx)
37+
38+
[Developer Walkthroughs](https://msdn.microsoft.com/en-US/library/mt313121(v=msads.30).aspx)
39+
40+
[Interstitial Ads](https://msdn.microsoft.com/en-US/library/mt313191(v=msads.30).aspx)
41+
42+
## System requirements
43+
44+
**Client:** Windows 10
45+
46+
**Phone:** Windows 10
47+
48+
## Build the sample
49+
50+
1. If you download the samples ZIP, be sure to unzip the entire archive, not just the folder with the sample you want to build.
51+
2. Start Microsoft Visual Studio 2015 and select **File** \> **Open** \> **Project/Solution**.
52+
3. Starting in the folder where you unzipped the samples, go to the Samples subfolder, then the subfolder for this specific sample, then the subfolder for your preferred language (C++, C#, or JavaScript). Double-click the Visual Studio�2015 Solution (.sln) file.
53+
4. Press Ctrl+Shift+B, or select **Build** \> **Build Solution**.
54+
55+
## Run the sample
56+
57+
The next steps depend on whether you just want to deploy the sample or you want to both deploy and run it.
58+
59+
### Deploying the sample
60+
61+
- Select Build > Deploy Solution.
62+
63+
### Deploying and running the sample
64+
65+
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or selectDebug > Start Without Debugging.
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.23107.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Advertising", "Advertising.vcxproj", "{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|ARM = Debug|ARM
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|ARM = Release|ARM
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Debug|ARM.ActiveCfg = Debug|ARM
19+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Debug|ARM.Build.0 = Debug|ARM
20+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Debug|ARM.Deploy.0 = Debug|ARM
21+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Debug|x64.ActiveCfg = Debug|x64
22+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Debug|x64.Build.0 = Debug|x64
23+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Debug|x64.Deploy.0 = Debug|x64
24+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Debug|x86.ActiveCfg = Debug|Win32
25+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Debug|x86.Build.0 = Debug|Win32
26+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Debug|x86.Deploy.0 = Debug|Win32
27+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Release|ARM.ActiveCfg = Release|ARM
28+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Release|ARM.Build.0 = Release|ARM
29+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Release|ARM.Deploy.0 = Release|ARM
30+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Release|x64.ActiveCfg = Release|x64
31+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Release|x64.Build.0 = Release|x64
32+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Release|x64.Deploy.0 = Release|x64
33+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Release|x86.ActiveCfg = Release|Win32
34+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Release|x86.Build.0 = Release|Win32
35+
{F710B9FD-4E6B-42D7-A99A-6D48888D48B0}.Release|x86.Deploy.0 = Release|Win32
36+
EndGlobalSection
37+
GlobalSection(SolutionProperties) = preSolution
38+
HideSolutionNode = FALSE
39+
EndGlobalSection
40+
EndGlobal
+228
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,228 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Label="Globals">
4+
<ProjectGuid>{f710b9fd-4e6b-42d7-a99a-6d48888d48b0}</ProjectGuid>
5+
<RootNamespace>SDKTemplate</RootNamespace>
6+
<DefaultLanguage>en-US</DefaultLanguage>
7+
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
8+
<AppContainerApplication>true</AppContainerApplication>
9+
<ApplicationType>Windows Store</ApplicationType>
10+
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
11+
<WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
12+
<WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion>
13+
</PropertyGroup>
14+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
15+
<ItemGroup Label="ProjectConfigurations">
16+
<ProjectConfiguration Include="Debug|ARM">
17+
<Configuration>Debug</Configuration>
18+
<Platform>ARM</Platform>
19+
</ProjectConfiguration>
20+
<ProjectConfiguration Include="Debug|Win32">
21+
<Configuration>Debug</Configuration>
22+
<Platform>Win32</Platform>
23+
</ProjectConfiguration>
24+
<ProjectConfiguration Include="Debug|x64">
25+
<Configuration>Debug</Configuration>
26+
<Platform>x64</Platform>
27+
</ProjectConfiguration>
28+
<ProjectConfiguration Include="Release|ARM">
29+
<Configuration>Release</Configuration>
30+
<Platform>ARM</Platform>
31+
</ProjectConfiguration>
32+
<ProjectConfiguration Include="Release|Win32">
33+
<Configuration>Release</Configuration>
34+
<Platform>Win32</Platform>
35+
</ProjectConfiguration>
36+
<ProjectConfiguration Include="Release|x64">
37+
<Configuration>Release</Configuration>
38+
<Platform>x64</Platform>
39+
</ProjectConfiguration>
40+
</ItemGroup>
41+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
42+
<ConfigurationType>Application</ConfigurationType>
43+
<UseDebugLibraries>true</UseDebugLibraries>
44+
<PlatformToolset>v140</PlatformToolset>
45+
</PropertyGroup>
46+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
47+
<ConfigurationType>Application</ConfigurationType>
48+
<UseDebugLibraries>true</UseDebugLibraries>
49+
<PlatformToolset>v140</PlatformToolset>
50+
</PropertyGroup>
51+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
52+
<ConfigurationType>Application</ConfigurationType>
53+
<UseDebugLibraries>true</UseDebugLibraries>
54+
<PlatformToolset>v140</PlatformToolset>
55+
</PropertyGroup>
56+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
57+
<ConfigurationType>Application</ConfigurationType>
58+
<UseDebugLibraries>false</UseDebugLibraries>
59+
<WholeProgramOptimization>true</WholeProgramOptimization>
60+
<PlatformToolset>v140</PlatformToolset>
61+
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
63+
<ConfigurationType>Application</ConfigurationType>
64+
<UseDebugLibraries>false</UseDebugLibraries>
65+
<WholeProgramOptimization>true</WholeProgramOptimization>
66+
<PlatformToolset>v140</PlatformToolset>
67+
</PropertyGroup>
68+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
69+
<ConfigurationType>Application</ConfigurationType>
70+
<UseDebugLibraries>false</UseDebugLibraries>
71+
<WholeProgramOptimization>true</WholeProgramOptimization>
72+
<PlatformToolset>v140</PlatformToolset>
73+
</PropertyGroup>
74+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
75+
<ImportGroup Label="ExtensionSettings">
76+
</ImportGroup>
77+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
79+
</ImportGroup>
80+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
81+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
82+
</ImportGroup>
83+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
84+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
85+
</ImportGroup>
86+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
87+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
88+
</ImportGroup>
89+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
90+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
91+
</ImportGroup>
92+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
93+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
94+
</ImportGroup>
95+
<PropertyGroup Label="UserMacros" />
96+
<PropertyGroup>
97+
<IncludePath>$(VC_IncludePath);$(UniversalCRT_IncludePath);$(WindowsSDK_IncludePath);..\..\..\SharedContent\cpp</IncludePath>
98+
</PropertyGroup>
99+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
100+
<ClCompile>
101+
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
102+
<DisableSpecificWarnings>4453;28204</DisableSpecificWarnings>
103+
</ClCompile>
104+
</ItemDefinitionGroup>
105+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
106+
<ClCompile>
107+
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
108+
<DisableSpecificWarnings>4453;28204</DisableSpecificWarnings>
109+
</ClCompile>
110+
</ItemDefinitionGroup>
111+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
112+
<ClCompile>
113+
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
114+
<DisableSpecificWarnings>4453;28204</DisableSpecificWarnings>
115+
</ClCompile>
116+
</ItemDefinitionGroup>
117+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
118+
<ClCompile>
119+
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
120+
<DisableSpecificWarnings>4453;28204</DisableSpecificWarnings>
121+
</ClCompile>
122+
</ItemDefinitionGroup>
123+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
124+
<ClCompile>
125+
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
126+
<DisableSpecificWarnings>4453;28204</DisableSpecificWarnings>
127+
</ClCompile>
128+
</ItemDefinitionGroup>
129+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
130+
<ClCompile>
131+
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
132+
<DisableSpecificWarnings>4453;28204</DisableSpecificWarnings>
133+
</ClCompile>
134+
</ItemDefinitionGroup>
135+
<ItemGroup>
136+
<ClInclude Include="pch.h" />
137+
<ClInclude Include="..\..\..\SharedContent\cpp\App.xaml.h">
138+
<DependentUpon>..\..\..\SharedContent\xaml\App.xaml</DependentUpon>
139+
</ClInclude>
140+
<ClInclude Include="..\..\..\SharedContent\cpp\MainPage.xaml.h">
141+
<DependentUpon>..\..\..\SharedContent\cpp\MainPage.xaml</DependentUpon>
142+
</ClInclude>
143+
<ClInclude Include="SampleConfiguration.h" />
144+
<ClInclude Include="Scenario1_XamlAdControl.xaml.h">
145+
<DependentUpon>..\shared\Scenario1_XamlAdControl.xaml</DependentUpon>
146+
</ClInclude>
147+
<ClInclude Include="Scenario2_ProgramaticAdControl.xaml.h">
148+
<DependentUpon>..\shared\Scenario2_ProgramaticAdControl.xaml</DependentUpon>
149+
</ClInclude>
150+
<ClInclude Include="Scenario3_InterstitialAd.xaml.h">
151+
<DependentUpon>..\shared\Scenario3_InterstitialAd.xaml</DependentUpon>
152+
</ClInclude>
153+
</ItemGroup>
154+
<ItemGroup>
155+
<ApplicationDefinition Include="..\..\..\SharedContent\xaml\App.xaml">
156+
<SubType>Designer</SubType>
157+
</ApplicationDefinition>
158+
<Page Include="..\..\..\SharedContent\cpp\MainPage.xaml">
159+
<SubType>Designer</SubType>
160+
</Page>
161+
<Page Include="..\shared\Scenario1_XamlAdControl.xaml" />
162+
<Page Include="..\shared\Scenario2_ProgramaticAdControl.xaml" />
163+
<Page Include="..\shared\Scenario3_InterstitialAd.xaml" />
164+
<Page Include="..\..\..\SharedContent\xaml\Styles.xaml">
165+
<Link>Styles\Styles.xaml</Link>
166+
</Page>
167+
</ItemGroup>
168+
<ItemGroup>
169+
<AppxManifest Include="Package.appxmanifest">
170+
<SubType>Designer</SubType>
171+
</AppxManifest>
172+
</ItemGroup>
173+
<ItemGroup>
174+
<ClCompile Include="..\..\..\SharedContent\cpp\App.xaml.cpp">
175+
<DependentUpon>..\..\..\SharedContent\xaml\App.xaml</DependentUpon>
176+
</ClCompile>
177+
<ClCompile Include="..\..\..\SharedContent\cpp\MainPage.xaml.cpp">
178+
<DependentUpon>..\..\..\SharedContent\cpp\MainPage.xaml</DependentUpon>
179+
</ClCompile>
180+
<ClCompile Include="pch.cpp">
181+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
182+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
183+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Create</PrecompiledHeader>
184+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">Create</PrecompiledHeader>
185+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
186+
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
187+
</ClCompile>
188+
<ClCompile Include="SampleConfiguration.cpp" />
189+
<ClCompile Include="Scenario1_XamlAdControl.xaml.cpp">
190+
<DependentUpon>..\shared\Scenario1_XamlAdControl.xaml</DependentUpon>
191+
</ClCompile>
192+
<ClCompile Include="Scenario2_ProgramaticAdControl.xaml.cpp">
193+
<DependentUpon>..\shared\Scenario2_ProgramaticAdControl.xaml</DependentUpon>
194+
</ClCompile>
195+
<ClCompile Include="Scenario3_InterstitialAd.xaml.cpp">
196+
<DependentUpon>..\shared\Scenario3_InterstitialAd.xaml</DependentUpon>
197+
</ClCompile>
198+
</ItemGroup>
199+
<ItemGroup>
200+
<Image Include="..\..\..\SharedContent\media\microsoft-sdk.png">
201+
<Link>Assets\microsoft-sdk.png</Link>
202+
</Image>
203+
<Image Include="..\..\..\SharedContent\media\smalltile-sdk.png">
204+
<Link>Assets\smalltile-sdk.png</Link>
205+
</Image>
206+
<Image Include="..\..\..\SharedContent\media\splash-sdk.png">
207+
<Link>Assets\splash-sdk.png</Link>
208+
</Image>
209+
<Image Include="..\..\..\SharedContent\media\squaretile-sdk.png">
210+
<Link>Assets\squaretile-sdk.png</Link>
211+
</Image>
212+
<Image Include="..\..\..\SharedContent\media\storelogo-sdk.png">
213+
<Link>Assets\storelogo-sdk.png</Link>
214+
</Image>
215+
<Image Include="..\..\..\SharedContent\media\tile-sdk.png">
216+
<Link>Assets\tile-sdk.png</Link>
217+
</Image>
218+
<Image Include="..\..\..\SharedContent\media\windows-sdk.png">
219+
<Link>Assets\windows-sdk.png</Link>
220+
</Image>
221+
</ItemGroup>
222+
<ItemGroup>
223+
<SDKReference Include="Microsoft.Advertising.Xaml, Version=10.0" />
224+
</ItemGroup>
225+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
226+
<ImportGroup Label="ExtensionTargets">
227+
</ImportGroup>
228+
</Project>

0 commit comments

Comments
 (0)