Skip to content

Commit

Permalink
don't compile windows-only projects on not windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
fearthecowboy committed Jul 8, 2016
1 parent 3f9053e commit 43432e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@

<!-- ClientRuntime projects that can be built into packages -->
<ItemGroup Condition="'$(Scope)' == 'ClientRuntime' OR '$(Scope)' == 'all'">
<PackageableLibraries Include="$(LibraryRoot)/src/client/*/project.json" Exclude="$(LibraryRoot)/src/client/*.Tests/project.json"/>
<PackageableLibraries Include="src/client/*/project.json" Exclude="src/client/*.Tests/project.json;src/client/*.Etw/project.json" Condition=" '$(OS)' == 'Windows_NT'"/>
<PackageableLibraries Include="src/client/*/project.json" Exclude="src/client/*.Tests/project.json;src/client/*.Etw/project.json;src/client/*.Log4Net/project.json" Condition=" '$(OS)' != 'Windows_NT'"/>
</ItemGroup>

<!-- CodeGenerator projects that can be built into packages -->
Expand Down

0 comments on commit 43432e9

Please sign in to comment.