-
Notifications
You must be signed in to change notification settings - Fork 16
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
Josh Petrie
committed
Jun 21, 2011
1 parent
56bb3f9
commit 2cca4da
Showing
2 changed files
with
15 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@echo off | ||
call "%VS100COMNTOOLS%/vsvars32.bat" | ||
msbuild Build.msbuild | ||
pause |
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,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Target Name="Build"> | ||
<MSBuild Projects="SlimDX.sln" Properties="Configuration=Release;Platform=Any CPU"/> | ||
<CreateItem Include="Source\Products\**\bin\Release\*.dll;Source\Products\**\bin\Release\*.pdb"> | ||
<Output TaskParameter="Include" ItemName="Artifacts" /> | ||
</CreateItem> | ||
<MakeDir Directories="Artifact"/> | ||
<Copy DestinationFolder="Artifact" SourceFiles="@(Artifacts)"/> | ||
</Target> | ||
</Project> |