You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.2 KiB
24 lines
1.2 KiB
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<NETStandardLibraryPackageVersion>2.0.0</NETStandardLibraryPackageVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Condition="'$(_NetStandardLibraryRefPath)' != ''" Include="$(_NetStandardLibraryRefPath)*.dll">
|
|
<!-- Private = false to make these reference only -->
|
|
<Private>false</Private>
|
|
<!-- hide these from Assemblies view in Solution Explorer, they will be shown under packages -->
|
|
<Visible>false</Visible>
|
|
<Facade Condition="'%(FileName)' != 'netstandard'">true</Facade>
|
|
<NuGetPackageId>NETStandard.Library</NuGetPackageId>
|
|
<NuGetPackageVersion>$(NETStandardLibraryPackageVersion)</NuGetPackageVersion>
|
|
</Reference>
|
|
<ReferenceCopyLocalPaths Condition="'$(_NetStandardLibraryLibPath)' != ''" Include="$(_NetStandardLibraryLibPath)*.dll">
|
|
<Private>false</Private>
|
|
<Facade Condition="'%(FileName)' != 'netstandard'">true</Facade>
|
|
<NuGetPackageId>NETStandard.Library</NuGetPackageId>
|
|
<NuGetPackageVersion>$(NETStandardLibraryPackageVersion)</NuGetPackageVersion>
|
|
</ReferenceCopyLocalPaths>
|
|
</ItemGroup>
|
|
</Project>
|