forked from microsoft/Windows-universal-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Windows 10 1511 Release - March 2016 Update
- Loading branch information
Showing
567 changed files
with
1,664 additions
and
2,513 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!--- | ||
category: ControlsLayoutAndText | ||
samplefwlink: http://go.microsoft.com/fwlink/?LinkId=746898 | ||
---> | ||
|
||
# 3D Printing Sample | ||
|
||
This sample demonstrates a number of different tasks associated with 3D printing and editing the 3MF file type. | ||
|
||
- Create a 3MF printing package programmatically | ||
- Create a .3mf file from XML data | ||
- Load a 3MF printing package from a .3mf file | ||
- Repair a model to make it printable | ||
- Save a 3MF printing package to a .3mf file | ||
- Launch the 3D print dialog | ||
- Open a file in the 3D Builder app | ||
|
||
System requirements | ||
------------------- | ||
|
||
*Client*: Windows 10 Version 1511 | ||
|
||
*Phone*: Windows 10 Version 1511 | ||
|
||
Build the sample | ||
---------------- | ||
|
||
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. | ||
2. Start Microsoft Visual Studio 2015 and select **File** \> **Open** \> **Project/Solution**. | ||
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. | ||
4. Press Ctrl+Shift+B, or select **Build** \> **Build Solution**. | ||
|
||
Run the sample | ||
-------------- | ||
|
||
To debug the app and then run it, press F5 or use **Debug** \> **Start Debugging**. To run the app without debugging, press Ctrl+F5 or use **Debug** \> **Start Without Debugging**. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
<?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>{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}</ProjectGuid> | ||
<OutputType>AppContainerExe</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>SDKTemplate</RootNamespace> | ||
<AssemblyName>SDKTemplate</AssemblyName> | ||
<DefaultLanguage>en-US</DefaultLanguage> | ||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier> | ||
<TargetPlatformVersion>10.0.10586.0</TargetPlatformVersion> | ||
<TargetPlatformMinVersion>10.0.10586.0</TargetPlatformMinVersion> | ||
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> | ||
<DebugSymbols>true</DebugSymbols> | ||
<OutputPath>bin\x86\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants> | ||
<NoWarn>;2008</NoWarn> | ||
<DebugType>full</DebugType> | ||
<PlatformTarget>x86</PlatformTarget> | ||
<UseVSHostingProcess>false</UseVSHostingProcess> | ||
<ErrorReport>prompt</ErrorReport> | ||
<Prefer32Bit>true</Prefer32Bit> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> | ||
<OutputPath>bin\x86\Release\</OutputPath> | ||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants> | ||
<Optimize>true</Optimize> | ||
<NoWarn>;2008</NoWarn> | ||
<DebugType>pdbonly</DebugType> | ||
<PlatformTarget>x86</PlatformTarget> | ||
<UseVSHostingProcess>false</UseVSHostingProcess> | ||
<ErrorReport>prompt</ErrorReport> | ||
<Prefer32Bit>true</Prefer32Bit> | ||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'"> | ||
<DebugSymbols>true</DebugSymbols> | ||
<OutputPath>bin\ARM\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants> | ||
<NoWarn>;2008</NoWarn> | ||
<DebugType>full</DebugType> | ||
<PlatformTarget>ARM</PlatformTarget> | ||
<UseVSHostingProcess>false</UseVSHostingProcess> | ||
<ErrorReport>prompt</ErrorReport> | ||
<Prefer32Bit>true</Prefer32Bit> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'"> | ||
<OutputPath>bin\ARM\Release\</OutputPath> | ||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants> | ||
<Optimize>true</Optimize> | ||
<NoWarn>;2008</NoWarn> | ||
<DebugType>pdbonly</DebugType> | ||
<PlatformTarget>ARM</PlatformTarget> | ||
<UseVSHostingProcess>false</UseVSHostingProcess> | ||
<ErrorReport>prompt</ErrorReport> | ||
<Prefer32Bit>true</Prefer32Bit> | ||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> | ||
<DebugSymbols>true</DebugSymbols> | ||
<OutputPath>bin\x64\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants> | ||
<NoWarn>;2008</NoWarn> | ||
<DebugType>full</DebugType> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<UseVSHostingProcess>false</UseVSHostingProcess> | ||
<ErrorReport>prompt</ErrorReport> | ||
<Prefer32Bit>true</Prefer32Bit> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> | ||
<OutputPath>bin\x64\Release\</OutputPath> | ||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants> | ||
<Optimize>true</Optimize> | ||
<NoWarn>;2008</NoWarn> | ||
<DebugType>pdbonly</DebugType> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<UseVSHostingProcess>false</UseVSHostingProcess> | ||
<ErrorReport>prompt</ErrorReport> | ||
<Prefer32Bit>true</Prefer32Bit> | ||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included --> | ||
<None Include="project.json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="..\..\..\SharedContent\cs\App.xaml.cs"> | ||
<Link>App.xaml.cs</Link> | ||
<DependentUpon>App.xaml</DependentUpon> | ||
</Compile> | ||
<Compile Include="..\..\..\SharedContent\cs\MainPage.xaml.cs"> | ||
<Link>MainPage.xaml.cs</Link> | ||
<DependentUpon>MainPage.xaml</DependentUpon> | ||
</Compile> | ||
<Compile Include="..\..\..\SharedContent\cs\AssemblyInfo.cs"> | ||
<Link>Properties\AssemblyInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="SampleConfiguration.cs" /> | ||
<Compile Include="Scenario1_Print.xaml.cs"> | ||
<DependentUpon>Scenario1_Print.xaml</DependentUpon> | ||
</Compile> | ||
<Compile Include="Scenario2_Launch.xaml.cs"> | ||
<DependentUpon>Scenario2_Launch.xaml</DependentUpon> | ||
</Compile> | ||
</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\cs\MainPage.xaml"> | ||
<Link>MainPage.xaml</Link> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Scenario1_Print.xaml"> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Page> | ||
<Page Include="Scenario2_Launch.xaml"> | ||
<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\cs\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> | ||
<Content Include="Assets\msLogo.png" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' "> | ||
<VisualStudioVersion>14.0</VisualStudioVersion> | ||
</PropertyGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.24720.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "3DPrinting", "3DPrinting.csproj", "{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}" | ||
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 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Debug|ARM.ActiveCfg = Debug|ARM | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Debug|ARM.Build.0 = Debug|ARM | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Debug|ARM.Deploy.0 = Debug|ARM | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Debug|x64.ActiveCfg = Debug|x64 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Debug|x64.Build.0 = Debug|x64 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Debug|x64.Deploy.0 = Debug|x64 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Debug|x86.ActiveCfg = Debug|x86 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Debug|x86.Build.0 = Debug|x86 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Debug|x86.Deploy.0 = Debug|x86 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Release|ARM.ActiveCfg = Release|ARM | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Release|ARM.Build.0 = Release|ARM | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Release|ARM.Deploy.0 = Release|ARM | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Release|x64.ActiveCfg = Release|x64 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Release|x64.Build.0 = Release|x64 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Release|x64.Deploy.0 = Release|x64 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Release|x86.ActiveCfg = Release|x86 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Release|x86.Build.0 = Release|x86 | ||
{027AB530-3B0B-4D5D-91C6-3DBEE2492E7B}.Release|x86.Deploy.0 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.