-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacNET.csproj
More file actions
69 lines (59 loc) · 1.95 KB
/
Copy pathacNET.csproj
File metadata and controls
69 lines (59 loc) · 1.95 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1</TargetFrameworks>
<LangVersion>13.0</LangVersion>
<NoStandardLib>false</NoStandardLib>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/614project/acNET</PackageProjectUrl>
<RepositoryUrl>https://github.com/614project/acNET</RepositoryUrl>
<Description>sovled.ac API wrapper for c#
(unofficial)
</Description>
<Title>acNET</Title>
<Copyright>made by 614project</Copyright>
<PackageIcon>acNETIcon.png</PackageIcon>
<PackageReadmeFile>nuget.md</PackageReadmeFile>
<PackageTags>wrapper, api, library</PackageTags>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<Version>0.9.1</Version>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IncludeSymbols>True</IncludeSymbols>
<ApplicationIcon>acNETIcon.ico</ApplicationIcon>
<Authors>614project</Authors>
<PackAsTool>False</PackAsTool>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<None Remove="nuget.md" />
</ItemGroup>
<ItemGroup>
<Content Include="acNETIcon.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="nuget.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<None Include="acNETIcon.png" Pack="true" PackagePath="\" />
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>