Skip to content

Commit

Permalink
Windows 10 RTM Release - October 2015 Update 2
Browse files Browse the repository at this point in the history
  • Loading branch information
oldnewthing committed Oct 15, 2015
1 parent 93bdfb9 commit 1f2633e
Show file tree
Hide file tree
Showing 714 changed files with 39,806 additions and 3,269 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
<td><a href="Samples/SimpleInk">Simple inking</a></td>
<td><a href="Samples/TouchKeyboard">Touch keyboard</a></td>
</tr>
<tr>
<td><a href="Samples/TouchKeyboardTextInput">Touch keyboard text input</a></td>
</tr>
</table>
<table>
<tr>
Expand Down
40 changes: 40 additions & 0 deletions Samples/Accelerometer/vb/Accelerometer.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22820.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Accelerometer", "Accelerometer.vbproj", "{1399F59A-6590-4E35-ACCF-5200C175D88B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|ARM = Release|ARM
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|ARM.ActiveCfg = Debug|ARM
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|ARM.Build.0 = Debug|ARM
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|ARM.Deploy.0 = Debug|ARM
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x64.ActiveCfg = Debug|x64
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x64.Build.0 = Debug|x64
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x64.Deploy.0 = Debug|x64
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x86.ActiveCfg = Debug|x86
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x86.Build.0 = Debug|x86
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Debug|x86.Deploy.0 = Debug|x86
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|ARM.ActiveCfg = Release|ARM
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|ARM.Build.0 = Release|ARM
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|ARM.Deploy.0 = Release|ARM
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x64.ActiveCfg = Release|x64
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x64.Build.0 = Release|x64
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x64.Deploy.0 = Release|x64
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x86.ActiveCfg = Release|x86
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x86.Build.0 = Release|x86
{1399F59A-6590-4E35-ACCF-5200C175D88B}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
242 changes: 242 additions & 0 deletions Samples/Accelerometer/vb/Accelerometer.vbproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,242 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{1399F59A-6590-4E35-ACCF-5200C175D88B}</ProjectGuid>
<!--<OutputType>AppContainerExe</OutputType>-->
<OutputType>AppContainerExe</OutputType>
<RootNamespace>SDKTemplate</RootNamespace>
<AssemblyName>Accelerometer</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion>10.0.10240.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
<!--<PackageCertificateKeyFile>VBUniversalApp_TemporaryKey.pfx</PackageCertificateKeyFile>-->
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<DebugSymbols>true</DebugSymbols>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\ARM\Debug\</OutputPath>
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>ARM</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<Prefer32Bit>true</Prefer32Bit>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\ARM\Release\</OutputPath>
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>ARM</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<Prefer32Bit>true</Prefer32Bit>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<Prefer32Bit>true</Prefer32Bit>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<Prefer32Bit>true</Prefer32Bit>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<Prefer32Bit>true</Prefer32Bit>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<Prefer32Bit>true</Prefer32Bit>
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<ItemGroup>
<None Include="project.json" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\..\SharedContent\vb\App.xaml.vb">
<Link>App.xaml.vb</Link>
<DependentUpon>App.xaml</DependentUpon>
</Compile>
<Compile Include="..\..\..\SharedContent\vb\MainPage.xaml.vb">
<Link>MainPage.xaml.vb</Link>
<DependentUpon>MainPage.xaml</DependentUpon>
</Compile>
<Compile Include="..\..\..\SharedContent\vb\AssemblyInfo.vb">
<Link>Properties\AssemblyInfo.vb</Link>
</Compile>
<Compile Include="SampleConfiguration.vb" />
<Compile Include="Scenario1_DataEvents.xaml.vb" />
<Compile Include="Scenario2_ShakeEvents.xaml.vb" />
<Compile Include="Scenario3_Polling.xaml.vb" />
<Compile Include="Scenario4_OrientationChanged.xaml.vb" />
<Compile Include="Scenario5_DataEventsBatching.xaml.vb" />
</ItemGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="..\..\..\SharedContent\xaml\App.xaml">
<Link>App.xaml</Link>
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="..\..\..\SharedContent\vb\MainPage.xaml">
<Link>MainPage.xaml</Link>
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="..\shared\Scenario1_DataEvents.xaml">
<Link>Scenario1_DataEvents.xaml</Link>
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="..\shared\Scenario2_ShakeEvents.xaml">
<Link>Scenario2_ShakeEvents.xaml</Link>
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="..\shared\Scenario3_Polling.xaml">
<Link>Scenario3_Polling.xaml</Link>
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="..\shared\Scenario4_OrientationChanged.xaml">
<Link>Scenario4_OrientationChanged.xaml</Link>
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="..\shared\Scenario5_DataEventsBatching.xaml">
<Link>Scenario5_DataEventsBatching.xaml</Link>
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="..\..\..\SharedContent\xaml\Styles.xaml">
<Link>Styles\Styles.xaml</Link>
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<ItemGroup>
<Content Include="..\..\..\SharedContent\vb\Default.rd.xml">
<Link>Properties\Default.rd.xml</Link>
</Content>
<Content Include="..\..\..\SharedContent\media\microsoft-sdk.png">
<Link>Assets\microsoft-sdk.png</Link>
</Content>
<Content Include="..\..\..\SharedContent\media\smalltile-sdk.png">
<Link>Assets\smallTile-sdk.png</Link>
</Content>
<Content Include="..\..\..\SharedContent\media\splash-sdk.png">
<Link>Assets\splash-sdk.png</Link>
</Content>
<Content Include="..\..\..\SharedContent\media\squaretile-sdk.png">
<Link>Assets\squareTile-sdk.png</Link>
</Content>
<Content Include="..\..\..\SharedContent\media\storelogo-sdk.png">
<Link>Assets\storeLogo-sdk.png</Link>
</Content>
<Content Include="..\..\..\SharedContent\media\tile-sdk.png">
<Link>Assets\tile-sdk.png</Link>
</Content>
<Content Include="..\..\..\SharedContent\media\windows-sdk.png">
<Link>Assets\windows-sdk.png</Link>
</Content>
</ItemGroup>
<ItemGroup>
<Import Include="Microsoft.VisualBasic" />
<Import Include="System" />
<Import Include="System.Collections" />
<Import Include="System.Collections.Generic" />
<Import Include="System.Collections.ObjectModel" />
<Import Include="System.ComponentModel" />
<Import Include="System.Diagnostics" />
<Import Include="System.IO" />
<Import Include="System.Linq" />
<Import Include="System.Runtime.CompilerServices" />
<Import Include="System.Runtime.InteropServices.WindowsRuntime" />
<Import Include="System.Threading.Tasks" />
<Import Include="System.Windows.Input" />
<Import Include="System.Xml.Linq" />
<Import Include="Windows.ApplicationModel" />
<Import Include="Windows.ApplicationModel.Activation" />
<Import Include="Windows.Foundation" />
<Import Include="Windows.Foundation.Collections" />
<Import Include="Windows.Graphics.Display" />
<Import Include="Windows.UI.ViewManagement" />
<Import Include="Windows.UI.Xaml" />
<Import Include="Windows.UI.Xaml.Controls" />
<Import Include="Windows.UI.Xaml.Controls.Primitives" />
<Import Include="Windows.UI.Xaml.Data" />
<Import Include="Windows.UI.Xaml.Input" />
<Import Include="Windows.UI.Xaml.Media" />
<Import Include="Windows.UI.Xaml.Media.Imaging" />
<Import Include="Windows.UI.Xaml.Navigation" />
</ItemGroup>
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
<VisualStudioVersion>14.0</VisualStudioVersion>
</PropertyGroup>
<PropertyGroup>
<OptionExplicit>On</OptionExplicit>
</PropertyGroup>
<PropertyGroup>
<OptionCompare>Binary</OptionCompare>
</PropertyGroup>
<PropertyGroup>
<OptionStrict>Off</OptionStrict>
</PropertyGroup>
<PropertyGroup>
<OptionInfer>On</OptionInfer>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.VisualBasic.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
51 changes: 51 additions & 0 deletions Samples/Accelerometer/vb/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="utf-8"?>

<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
IgnorableNamespaces="uap mp">

<Identity
Name="Microsoft.SDKSamples.Accelerometer.VB"
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
Version="1.0.0.0" />


<mp:PhoneIdentity PhoneProductId="3df6c60c-2c0b-4061-9e7b-3108ff8067e6" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

<Properties>
<DisplayName>Accelerometer VB Sample</DisplayName>
<PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>
<Logo>Assets\StoreLogo-sdk.png</Logo>
</Properties>

<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.10240.0" />
</Dependencies>

<Resources>
<Resource Language="x-generate"/>
</Resources>

<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="Accelerometer.App">
<uap:VisualElements
DisplayName="Accelerometer VB Sample"
Square150x150Logo="Assets\SquareTile-sdk.png"
Square44x44Logo="Assets\SmallTile-sdk.png"
Description="Accelerometer VB Sample"
BackgroundColor="#00b2f0">
<uap:SplashScreen Image="Assets\Splash-sdk.png" />
<uap:DefaultTile>
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square150x150Logo" />
</uap:ShowNameOnTiles>
</uap:DefaultTile>
</uap:VisualElements>
</Application>
</Applications>

</Package>
31 changes: 31 additions & 0 deletions Samples/Accelerometer/vb/SampleConfiguration.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
'*********************************************************
'
' Copyright (c) Microsoft. All rights reserved.
' This code is licensed under the MIT License (MIT).
' THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
' ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
' IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
' PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
'
'*********************************************************
Imports System
Imports System.Collections.Generic
Imports Windows.UI.Xaml.Controls

Namespace Global.SDKTemplate

Public Partial Class MainPage
Inherits Page

Public Const FEATURE_NAME As String = "Accelerometer"

Public ReadOnly Property scenarios As New List(Of Scenario) From {New Scenario() With {.Title = "Data events", .ClassType = GetType(Scenario1_DataEvents)}, New Scenario() With {.Title = "Shake events", .ClassType = GetType(Scenario2_ShakeEvents)}, New Scenario() With {.Title = "Polling", .ClassType = GetType(Scenario3_Polling)}, New Scenario() With {.Title = "OrientationChange", .ClassType = GetType(Scenario4_OrientationChanged)}, New Scenario() With {.Title = "Data events batching", .ClassType = GetType(Scenario5_DataEventsBatching)}}
End Class

Public Class Scenario

Public Property Title As String

Public Property ClassType As Type
End Class
End Namespace
Loading

0 comments on commit 1f2633e

Please sign in to comment.