Skip to content

Instantly share code, notes, and snippets.

@melanchall
Created October 5, 2022 16:30
Show Gist options
  • Save melanchall/8d516da5cad49ccbbe41dfec313e4192 to your computer and use it in GitHub Desktop.
Save melanchall/8d516da5cad49ccbbe41dfec313e4192 to your computer and use it in GitHub Desktop.
[Medium] NuGet Native 7
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<LangVersion>6</LangVersion>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup>
<PackageId>DualLibClassLibrary</PackageId>
<Version>1.0.0</Version>
<Authors>melanchall</Authors>
<Owners>melanchall</Owners>
<Description>Dual-lib class library</Description>
<Copyright>Copyright © Melanchall 2021</Copyright>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Content Include="test.dll">
<Pack>true</Pack>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="test.dylib">
<Pack>true</Pack>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment