Files
libremetaverse/Programs/GridProxy/GridProxy.csproj

27 lines
1.1 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>GridProxy</AssemblyName>
2025-01-02 14:18:27 -06:00
<PackageId>GridProxy</PackageId>
<OutputType>Library</OutputType>
<RootNamespace>GridProxy</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
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>
<OutputPath>..\..\bin\</OutputPath>
2025-01-02 14:18:27 -06:00
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
2025-08-25 13:56:13 -05:00
<PackageReference Include="log4net" Version="3.2.0" />
2024-07-05 10:39:06 -05:00
<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>
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>
</Project>