-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from panesofglass/master
Update Web API lab
- Loading branch information
Showing
357 changed files
with
23,372 additions
and
238 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
39 changes: 0 additions & 39 deletions
39
WebApi Lab/WebAPI Complete/GuitarExample/Console/Program.fs
This file was deleted.
Oops, something went wrong.
60 changes: 0 additions & 60 deletions
60
WebApi Lab/WebAPI Complete/GuitarExample/Console/System.Net.Http.fs
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
WebApi Lab/WebAPI Lab Starter/GuitarExample/Console/Program.fs
This file was deleted.
Oops, something went wrong.
60 changes: 0 additions & 60 deletions
60
WebApi Lab/WebAPI Lab Starter/GuitarExample/Console/System.Net.Http.fs
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Root>$(MSBuildThisFileDirectory)</Root> | ||
<SolutionDir>$(Root)</SolutionDir> | ||
<FAKE>$(Root)/packages/FAKE.2.1.204-alpha/tools/FAKE.exe</FAKE> | ||
<FakeTemp>$(Root)/.build/FAKE.tmp</FakeTemp> | ||
</PropertyGroup> | ||
<Target Name="InstallNuGet"> | ||
<MakeDir Directories="$(Root)/.nuget" /> | ||
<MSBuild Projects="$(Root)/.nuget/NuGet.targets" | ||
Properties="DownloadNuGetExe=true;ProjectDir=$(Root);SolutionDir=$(Root)" | ||
Targets="RestorePackages" /> | ||
</Target> | ||
<Target Name="InstallFake" | ||
DependsOnTargets="InstallNuGet" | ||
Condition="!Exists('$(FakeTemp)')"> | ||
<MakeDir Directories=".build" /> | ||
<Exec Command='"$(Root)/.nuget/nuget.exe" install FAKE -Pre -out .build' | ||
WorkingDirectory="$(Root)" | ||
LogStandardErrorAsError="true"/> | ||
<ItemGroup> | ||
<FAKEExe Include="$(Root)/.build/FAKE*/tools/FAKE.exe" /> | ||
</ItemGroup> | ||
<Copy SourceFiles="@(FAKEExe)" DestinationFiles="$(FakeTemp)" /> | ||
</Target> | ||
<Target Name="LocateFake" DependsOnTargets="InstallFake"> | ||
<ItemGroup> | ||
<FAKE Include="$(Root)/.build/FAKE*/tools/FAKE.exe" /> | ||
</ItemGroup> | ||
</Target> | ||
<Target Name="Build" DependsOnTargets="LocateFake"> | ||
<Exec Command=""@(FAKE)" boot auto" | ||
WorkingDirectory="$(Root)" | ||
LogStandardErrorAsError="true" /> | ||
</Target> | ||
<Target Name="Clean" DependsOnTargets="LocateFake"> | ||
<Exec Command=""$(FAKE)" build.fsx Clean" | ||
WorkingDirectory="$(Root)" | ||
LogStandardErrorAsError="true" /> | ||
</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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@echo off | ||
cls | ||
%WINDIR%\Microsoft.Net\Framework\v4.0.30319\MSBuild.exe Build.proj | ||
pause | ||
|
Oops, something went wrong.