-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAoC.API.csproj
More file actions
22 lines (19 loc) · 839 Bytes
/
AoC.API.csproj
File metadata and controls
22 lines (19 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>AoCAPI</PackageId>
<Authors>Antonio Subašić</Authors>
<Description>a simple Advent of Code API</Description>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageTags>AoC, Advent-of-Code, API</PackageTags>
<RepositoryUrl>https://github.com/antoniosubasic/AoC.API</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageVersion>3.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<None Include="docs\README.md" Pack="true" PackagePath="\" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
</Project>