forked from aybe/Windows-API-Code-Pack-1.1
-
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.
- Loading branch information
Showing
11 changed files
with
2,043 additions
and
9 deletions.
There are no files selected for viewing
File renamed without changes.
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,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>WindowsAPICodePack-DirectX</id> | ||
<version>1.1</version> | ||
<title>Windows API Code Pack - DirectX</title> | ||
<authors>Aybe</authors> | ||
<owners>Microsoft</owners> | ||
<licenseUrl>http://code.msdn.microsoft.com/WindowsAPICodePack/Project/License.aspx</licenseUrl> | ||
<projectUrl>http://archive.msdn.microsoft.com/WindowsAPICodePack</projectUrl> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
<description>DirectX library for Windows API Code Pack</description> | ||
<summary>Windows® API Code Pack for Microsoft® .NET Framework provides a source code library that can be used to access some features of Windows 7 and Windows Vista from managed code.</summary> | ||
<language>en-US</language> | ||
<tags>WindowsAPICodePack</tags> | ||
</metadata> | ||
<files> | ||
<file src="..\source\WindowsAPICodePack\DirectX\x64\Release\Microsoft.WindowsAPICodePack.DirectX.dll" target="bin\x64\Microsoft.WindowsAPICodePack.DirectX.dll" /> | ||
<file src="..\source\WindowsAPICodePack\DirectX\Release\Microsoft.WindowsAPICodePack.DirectX.dll" target="bin\x86\Microsoft.WindowsAPICodePack.DirectX.dll" /> | ||
<file src="WindowsAPICodePack-DirectX.targets" target="build\WindowsAPICodePack-DirectX.targets" /> | ||
<file src="..\source\WindowsAPICodePack\DirectX\Release\Microsoft.WindowsAPICodePack.DirectX.dll" target="lib\Microsoft.WindowsAPICodePack.DirectX.dll" /> | ||
</files> | ||
</package> |
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,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<PropertyGroup> | ||
<BuildDependsOn> | ||
CopyDirectX; | ||
$(BuildDependsOn); | ||
</BuildDependsOn> | ||
</PropertyGroup> | ||
|
||
<Target Name="CopyDirectX"> | ||
<Error Condition=" '$(Platform)' == 'anycpu' " Text="Microsoft.WindowsAPICodePack.DirectX does not work under AnyCPU platform !" /> | ||
<Message Text="Copying DirectX DLL for $(Platform) platform" Importance="High" /> | ||
<Copy SourceFiles="..\packages\WindowsAPICodePack-DirectX.1.1\bin\x86\Microsoft.WindowsAPICodePack.DirectX.dll" Condition=" '$(Platform)' == 'x86' " DestinationFolder="..\packages\WindowsAPICodePack-DirectX.1.1\lib" /> | ||
<Copy SourceFiles="..\packages\WindowsAPICodePack-DirectX.1.1\bin\x64\Microsoft.WindowsAPICodePack.DirectX.dll" Condition=" '$(Platform)' == 'x64' " DestinationFolder="..\packages\WindowsAPICodePack-DirectX.1.1\lib" /> | ||
</Target> | ||
|
||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
787 changes: 787 additions & 0 deletions
787
source/WindowsAPICodePack/DirectX/DirectX/DirectX.vcxproj
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.