11 lines
357 B
XML
11 lines
357 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<PropertyGroup>
|
||
|
<OutputType>exe</OutputType>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="../library/Library.csproj" />
|
||
|
<PackageReference Include="ProjectReferencesTest.Library" Version="*" Condition=" '$(ContinuousIntegrationBuild)'=='true' " />
|
||
|
</ItemGroup>
|
||
|
</Project>
|