Files
libremetaverse/Programs/examples/IRCGateway/IRCGateway.csproj

21 lines
852 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2019-10-22 20:30:05 -05:00
<PropertyGroup>
2021-12-29 10:23:37 -06:00
<AssemblyName>IrcGateway</AssemblyName>
<PackageId>IrcGateway</PackageId>
2021-12-28 19:25:54 -06:00
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2019-10-22 20:30:05 -05:00
<OutputType>Exe</OutputType>
<OutputPath>..\..\..\bin\</OutputPath>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<Platforms>x64;x86</Platforms>
<IsPackable>false</IsPackable>
2019-10-22 20:30:05 -05:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\LibreMetaverse\LibreMetaverse.csproj" />
<ProjectReference Include="..\..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
2019-10-22 20:30:05 -05:00
</ItemGroup>
<ItemGroup>
2022-01-05 10:35:47 -06:00
<None Include="..\..\..\LICENSE.txt" Pack="true" PackagePath="\" />
<None Include="..\..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\..\data\logo.png" Pack="true" PackagePath="\" />
</ItemGroup>
2019-10-22 20:30:05 -05:00
</Project>