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

21 lines
878 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2019-10-22 20:30:05 -05:00
<PropertyGroup>
2025-01-02 14:18:27 -06:00
<AssemblyName>IrcGateway</AssemblyName>
<PackageId>IrcGateway</PackageId>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2019-10-22 20:30:05 -05:00
<OutputType>Exe</OutputType>
<OutputPath>..\..\..\bin\</OutputPath>
2025-01-02 14:18:27 -06:00
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
2024-08-08 12:00:02 -05:00
<PlatformTarget>AnyCPU</PlatformTarget>
2025-01-02 14:18:27 -06:00
<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>
2025-01-02 14:18:27 -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>