2022-04-12 20:31:56 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-03-18 16:05:58 -05:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<AssemblyName>GridProxy</AssemblyName>
|
2025-01-02 14:18:27 -06:00
|
|
|
<PackageId>GridProxy</PackageId>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2017-03-18 16:05:58 -05:00
|
|
|
<RootNamespace>GridProxy</RootNamespace>
|
2017-09-04 18:13:38 -05:00
|
|
|
<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>
|
2017-03-18 16:05:58 -05:00
|
|
|
<OutputPath>..\..\bin\</OutputPath>
|
2025-01-02 14:18:27 -06:00
|
|
|
<IsPackable>false</IsPackable>
|
2021-07-04 18:01:05 -05:00
|
|
|
</PropertyGroup>
|
2017-09-03 13:44:55 -05:00
|
|
|
<ItemGroup>
|
2025-04-22 20:28:36 -05:00
|
|
|
<PackageReference Include="log4net" Version="3.0.4" />
|
2024-07-05 10:39:06 -05:00
|
|
|
<PackageReference Include="XmlRpcCore" Version="3.1.3" />
|
2017-03-18 16:05:58 -05:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2017-09-03 13:28:19 -05:00
|
|
|
<ProjectReference Include="..\..\LibreMetaverse\LibreMetaverse.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\LibreMetaverse.StructuredData\LibreMetaverse.StructuredData.csproj" />
|
2021-07-26 11:43:31 -05:00
|
|
|
<ProjectReference Include="..\..\LibreMetaverse.Types\LibreMetaverse.Types.csproj" />
|
2017-03-18 16:05:58 -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>
|
2017-03-18 16:05:58 -05:00
|
|
|
</Project>
|