-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJudge0.csproj
More file actions
25 lines (20 loc) · 884 Bytes
/
Copy pathJudge0.csproj
File metadata and controls
25 lines (20 loc) · 884 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>StardustDL</Authors>
<Company>StardustDL</Company>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/StardustDL/judge0-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/StardustDL/judge0-dotnet</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageId>Judge0</PackageId>
<Product>Judge0</Product>
<Description>Client SDK for Judge0 RESTful API.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Net.Http.Json" Version="6.0.0" />
</ItemGroup>
</Project>