2022-11-11 12:06:30 -06:00
|
|
|
|
<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" />
|
2021-07-26 11:43:31 -05:00
|
|
|
|
<ProjectReference Include="..\..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
2019-10-22 20:30:05 -05:00
|
|
|
|
</ItemGroup>
|
2021-12-29 14:49:56 -06:00
|
|
|
|
<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="\" />
|
2021-12-29 14:49:56 -06:00
|
|
|
|
</ItemGroup>
|
2019-10-22 20:30:05 -05:00
|
|
|
|
</Project>
|