Skip to content
This repository was archived by the owner on Mar 30, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 1 addition & 19 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,4 @@ Thumbs.db
*.opensdf
*.suo
*.dotCover
sdk-include/
vc-include/
SharpDX.Assimp/
obj/
ipch*/
Demo/
AppPackages/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
Generated*/
Build/
SharpDX.Framework*
SharpMsdn*/
Temp*/
#ignore build log file
BuildErrors.log
#ignore certification test results
Source/CertificationTests/Results/*
packages
6 changes: 0 additions & 6 deletions Build/MakeSharpDX.All.cmd

This file was deleted.

5 changes: 0 additions & 5 deletions Build/MakeSharpDX.Assemblies.VS2013.cmd

This file was deleted.

5 changes: 0 additions & 5 deletions Build/MakeSharpDX.CertificationTests.VS2013.cmd

This file was deleted.

5 changes: 0 additions & 5 deletions Build/MakeSharpDX.cmd

This file was deleted.

3 changes: 0 additions & 3 deletions Build/MakeSharpDXRelease.cmd

This file was deleted.

60 changes: 0 additions & 60 deletions Build/NantExtensions.include

This file was deleted.

56 changes: 1 addition & 55 deletions Build/SharpDX.PostSettings.targets
Original file line number Diff line number Diff line change
@@ -1,57 +1,3 @@
<!-- Common Targets used by SharpDX projects -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '11.0' ">
<VisualStudioVersion>11.0</VisualStudioVersion>
</PropertyGroup>

<!--Include automatically SharpDXWP8 interop assembly-->
<ItemGroup>
<ProjectReference Condition="'$(SharpDXWP8)' == 'true'" Include="$(SolutionDir)Source\SharpDX.WP8\SharpDX.WP8.vcxproj">
<Name>SharpDX.WP8</Name>
</ProjectReference>
</ItemGroup>

<!--Import Windows 8 WINRT targets only for WIN8 platforms-->
<Import Condition="'$(SharpDXWin8)' == 'true'" Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />

<!--Import Windows Phone 8 targets only for WP8 -->
<Import Condition="'$(SharpDXWP8)' == 'true'" Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets" />
<Import Condition="'$(SharpDXWP8)' == 'true'" Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets" />

<PropertyGroup Condition="'$(SharpDXWP81)' == 'true'">
<TargetPlatformIdentifier>WindowsPhoneApp</TargetPlatformIdentifier>
</PropertyGroup>

<!--Import Windows Phone 8.1 targets only for WP81 -->
<Import Condition="'$(SharpDXWP81)' == 'true'" Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />

<!--Import standard targets for all non-Windows(Phone) 8 platforms-->
<Import Condition="'$(SharpDXWin8Core)' == 'false'" Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DocumentationFile>$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>

<ProjectExtensions/>

<Target Name="BeforeClean">
<RemoveDir Condition="Exists('$(ProjectDir)Generated')" Directories="$(ProjectDir)Generated"/>
</Target>

<Target Name="AfterBuild">
<Exec Command='"$(SolutionDir)\Source\Bin\SharpCLI.exe" "$(TargetPath)"'/>

<GetFrameworkSdkPath>
<Output TaskParameter="Path" PropertyName="FrameworkSdkPath" />
</GetFrameworkSdkPath>

<Exec Command='"$(FrameworkSdkPath)\bin\NETFX 4.5.1 Tools\x64\sn.exe" -Ra $(TargetPath) $(SolutionDir)sharpdx.snk' Condition="'$(SharpDXSign)' == 'true'"/>

<!-- Copy back *.dll from bin/Debug|Release to obj/Debug/Release directory -->
<Copy SourceFiles="@(MainAssembly)" DestinationFolder="$(IntermediateOutputPath)" SkipUnchangedFiles="true" OverwriteReadOnlyFiles="$(OverwriteReadOnlyFiles)"/>
<!-- Copy back *.pdb from bin/Debug|Release to obj/Debug/Release directory -->
<Copy SourceFiles="@(_DebugSymbolsOutputPath)" DestinationFiles="@(_DebugSymbolsIntermediatePath)" SkipUnchangedFiles="true" OverwriteReadOnlyFiles="$(OverwriteReadOnlyFiles)" Condition="'$(_DebugSymbolsProduced)'=='true' and '$(SkipCopyingSymbolsToOutputDirectory)' != 'true'"/>

</Target>
</Project>
</Project>
Loading