Rework nuget support moving entirely to csproj and eliminating nuspec files

This commit is contained in:
Cinder
2021-12-29 14:49:56 -06:00
parent ae866e9aa6
commit 824f8245c1
25 changed files with 103 additions and 150 deletions

View File

@@ -7,6 +7,7 @@
<OutputPath>..\..\..\bin\</OutputPath>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<Platforms>AnyCPU;x64;x86</Platforms>
<IsTool>true</IsTool>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
@@ -15,4 +16,9 @@
<ProjectReference Include="..\..\..\LibreMetaverse\LibreMetaverse.csproj" />
<ProjectReference Include="..\..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\LICENSE.txt" Pack="true" PackagePath="docs\" />
<None Include="..\..\..\README.md" Pack="true" PackagePath="docs\" />
<None Include="..\..\..\data\logo.png" Pack="true" PackagePath="images\" />
</ItemGroup>
</Project>