49 lines
1.8 KiB
XML
49 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<Title>mROA</Title>
|
|
<Version>2.0.8</Version>
|
|
<Authors>YaslePoy</Authors>
|
|
<Description>Fast and easy RPC with contex</Description>
|
|
<RepositoryUrl>https://github.com/YaslePoy/mROA</RepositoryUrl>
|
|
<PackageProjectUrl>https://github.com/YaslePoy/mROA</PackageProjectUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>RPC</PackageTags>
|
|
<LangVersion>9</LangVersion>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
<PackageIcon>mroaLogo.png</PackageIcon>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DefineConstants/>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DefineConstants></DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.7" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.7" />
|
|
<PackageReference Include="System.Text.Json" Version="9.0.5"/>
|
|
<PackageReference Include="System.Threading.Channels" Version="9.0.5"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="mroaLogo.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.Extensions.Logging.Abstractions">
|
|
<HintPath>..\..\..\..\.nuget\packages\microsoft.extensions.logging.abstractions\9.0.7\lib\netstandard2.0\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|