-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExpress.Net.Base.csproj
More file actions
26 lines (22 loc) · 930 Bytes
/
Express.Net.Base.csproj
File metadata and controls
26 lines (22 loc) · 930 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
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>Express.Net</RootNamespace>
<IsPackable>true</IsPackable>
<Nullable>enable</Nullable>
<PackageDescription>A fast DSL for build microservices.</PackageDescription>
<Authors>Vishvaka Ranasinghe</Authors>
<Description>The Base Packagers for Express.NET DSL</Description>
<Copyright>2021 Vishvaka Ranasinghe</Copyright>
<PackageProjectUrl>https://github.com/Vake93/Express.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/Vake93/Express.NET</RepositoryUrl>
<Version>1-alpha-4</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.4" />
</ItemGroup>
</Project>