-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimply.Track.csproj
24 lines (22 loc) · 1.06 KB
/
Simply.Track.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Simply Track</Title>
<Authors>rjoseph</Authors>
<Company>rjoseph</Company>
<Description>A library to add tracking capabilities to resources, like createdon, createdby, updatedon, voidon, etc.</Description>
<PackageTags>rjoseph;track;tracking;tracked</PackageTags>
<PackageReleaseNotes>A library to add tracking capabilities to resources, like createdon, createdby, updatedon, voidon, etc.</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/rodnyjoseph200/Simply.Track</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>main</RepositoryBranch>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>