-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpressSharp.csproj
More file actions
32 lines (28 loc) · 1.05 KB
/
ExpressSharp.csproj
File metadata and controls
32 lines (28 loc) · 1.05 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>meni3a</Authors>
<Description>An Express.js like nuget package for building REST APIs using .NET</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://www.nuget.org/packages/ExpressSharp/</PackageProjectUrl>
<RepositoryUrl>https://github.com/meni3a/ExpressSharp</RepositoryUrl>
<PackageIcon>express.png</PackageIcon>
<Version>1.0.3</Version>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\..\Desktop\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\..\Downloads\express.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>