mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
24 lines
1.2 KiB
XML
24 lines
1.2 KiB
XML
<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>
|