Advertisement
Guest User

Untitled

a guest
Nov 24th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. user@user-P5K-SE ~/github/zero-k/other/.nuget $ svn diff NuGet.targets
  2. - <RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir "$(SolutionDir) " </RestoreCommand>
  3. + <RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir "$(SolutionDir)" </RestoreCommand>
  4.  
  5. user@user-P5K-SE ~/github/zero-k/other/ZeroKLobby $ svn diff ZeroKLobby.csproj
  6. @@ -137,7 +137,7 @@
  7. - <Compile Include="AdvertiserWindow.designer.cs">
  8. + <Compile Include="AdvertiserWindow.Designer.cs">
  9. @@ -165,7 +165,13 @@
  10. - <Compile Include="VoiceCommand\ChatToSpeech.cs" />
  11. + <Compile Condition=" '$(OS)' == 'Windows_NT' " Include="VoiceCommand\ChatToSpeech.cs" />
  12. + <Compile Condition=" '$(OS)' == 'Windows_NT' " Include="VoiceCommand\BuildUnitRule.cs" />
  13. + <Compile Condition=" '$(OS)' == 'Windows_NT' " Include="VoiceCommand\FactoryPauseRule.cs" />
  14. + <Compile Condition=" '$(OS)' == 'Windows_NT' " Include="VoiceCommand\Pluralizer.cs" />
  15. + <Compile Condition=" '$(OS)' == 'Windows_NT' " Include="VoiceCommand\VoiceCommandEngine.cs" />
  16. + <Compile Condition=" '$(OS)' == 'Windows_NT' " Include="VoiceCommand\VoiceRule.cs" />
  17. + <Compile Include="WindowsApi.cs" />
  18. @@ -206,7 +212,7 @@
  19. - <Compile Include="MicroLobby\ChatTab.designer.cs">
  20. + <Compile Include="MicroLobby\ChatTab.Designer.cs">
  21. @@ -457,12 +463,6 @@
  22. - <Compile Include="VoiceCommand\BuildUnitRule.cs" />
  23. - <Compile Include="VoiceCommand\FactoryPauseRule.cs" />
  24. - <Compile Include="VoiceCommand\Pluralizer.cs" />
  25. - <Compile Include="VoiceCommand\VoiceCommandEngine.cs" />
  26. - <Compile Include="VoiceCommand\VoiceRule.cs" />
  27. - <Compile Include="WindowsApi.cs" />
  28. @@ -1639,13 +1639,13 @@
  29. - <Target Name="AfterBuild">
  30. + <Target Name="AfterBuild" Condition=" '$(OS)' == 'Windows_NT' ">
  31. - <PropertyGroup>
  32. + <PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement