21 lines
866 B
XML
21 lines
866 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</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="docs\" />
|
|
<None Include="..\..\..\README.md" Pack="true" PackagePath="docs\" />
|
|
<None Include="..\..\..\data\logo.png" Pack="true" PackagePath="images\" />
|
|
</ItemGroup>
|
|
</Project> |