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

21 lines
856 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>IrcGateway</AssemblyName>
<PackageId>IrcGateway</PackageId>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<OutputType>Exe</OutputType>
<OutputPath>..\..\..\bin\</OutputPath>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<Platforms>x64;x86</Platforms>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\LibreMetaverse\LibreMetaverse.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>