Skip to content

Commit

Permalink
Moving to FAKE for build process
Browse files Browse the repository at this point in the history
Eliminating MSBuild and FAKE from build process.
  • Loading branch information
markheath committed Sep 10, 2015
1 parent 725e269 commit 7d7c952
Show file tree
Hide file tree
Showing 12 changed files with 143 additions and 352 deletions.
Binary file removed .build/MSBuild.Community.Tasks.dll
Binary file not shown.
147 changes: 0 additions & 147 deletions .build/MSBuild.Community.Tasks.targets

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ _ReSharper*/
*.ncrunchproject
*.orig
*.lock.json
.vs/
.vs/
.fake/
14 changes: 0 additions & 14 deletions .hgignore

This file was deleted.

65 changes: 0 additions & 65 deletions Build.proj

This file was deleted.

2 changes: 1 addition & 1 deletion NAudio.Wma.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NAudio.Wma</id>
<version>1.0.1</version>
<version>@build.number@</version>
<authors>Mark Heath, Yuval Naveh</authors>
<owners>Mark Heath</owners>
<licenseUrl>http://naudio.codeplex.com/license</licenseUrl>
Expand Down
2 changes: 1 addition & 1 deletion NAudio.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NAudio</id>
<version>1.7.3</version>
<version>@build.number@</version>
<authors>Mark Heath</authors>
<owners>Mark Heath</owners>
<licenseUrl>http://naudio.codeplex.com/license</licenseUrl>
Expand Down
90 changes: 0 additions & 90 deletions NAudio.proj

This file was deleted.

Binary file modified Tools/NuGet.exe
Binary file not shown.
6 changes: 5 additions & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
MSBuild NAudio.proj %*
@echo off
cls
if not exist "packages\FAKE" then "Tools\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "packages" "-ExcludeVersion"
"packages\FAKE\tools\Fake.exe" build.fsx %*
pause
Loading

0 comments on commit 7d7c952

Please sign in to comment.