Files
libremetaverse/Programs/GridProxy/GridProxy.csproj
2025-01-02 14:18:27 -06:00

27 lines
1.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>GridProxy</AssemblyName>
<PackageId>GridProxy</PackageId>
<OutputType>Library</OutputType>
<RootNamespace>GridProxy</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<PlatformTarget>AnyCPU</PlatformTarget>
<OutputPath>..\..\bin\</OutputPath>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="log4net" Version="3.0.3" />
<PackageReference Include="XmlRpcCore" Version="3.1.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\LibreMetaverse\LibreMetaverse.csproj" />
<ProjectReference Include="..\..\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.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>