1234567891011121314151617181920212223 |
- <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>
|