-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenOnlineConfig.csproj
More file actions
34 lines (30 loc) · 1.23 KB
/
OpenOnlineConfig.csproj
File metadata and controls
34 lines (30 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsAotCompatible>true</IsAotCompatible>
<Authors>database64128</Authors>
<Product>OpenOnlineConfig.NET</Product>
<Description>.NET class library for Open Online Config (OOC) support.</Description>
<Copyright>© 2025 database64128</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Shadowsocks-NET/OpenOnlineConfig.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/Shadowsocks-NET/OpenOnlineConfig.NET</RepositoryUrl>
<RepositoryType>Public</RepositoryType>
<PackageTags>open-online-config;censorship-circumvention</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS1591</NoWarn>
<Version>1.4.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="10.0.2" />
</ItemGroup>
</Project>