Files
libremetaverse/Programs/GridProxy/GridProxy.csproj
Gwyneth Llewelyn 5b5fe3ce1e Feat: attempt to use net6.0 for compilation
... because I *need* it! 😭
2022-04-12 20:31:56 +01:00

27 lines
1.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>GridProxy</AssemblyName>
<PackageId>GridProxy</PackageId>
<OutputType>Library</OutputType>
<RootNamespace>GridProxy</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<Platforms>x64;x86</Platforms>
<OutputPath>..\..\bin\</OutputPath>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="log4net" Version="2.0.14" />
<PackageReference Include="XmlRpcCore" Version="3.1.2.77" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\LibreMetaverse\LibreMetaverse.csproj" />
<ProjectReference Include="..\..\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.csproj" />
<ProjectReference Include="..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" />
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\data\logo.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>