-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExpress.Net.Build.csproj
More file actions
49 lines (40 loc) · 1.89 KB
/
Express.Net.Build.csproj
File metadata and controls
49 lines (40 loc) · 1.89 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<TargetFramework>net10.0</TargetFramework>
<PackageDescription>A fast DSL for build microservices.</PackageDescription>
<Authors>Vishvaka Ranasinghe</Authors>
<Description>Express.NET is a DSL for build fast web services effortlessly. This builds on top of .NET / ASP.NET 10.</Description>
<Copyright>2021 Vishvaka Ranasinghe</Copyright>
<RepositoryUrl>https://github.com/Vake93/Express.NET</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.40.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Express.Net\Express.Net.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\Library\Runtime\Express.Net.Base.dll">
<LogicalName>Express.Net.Base</LogicalName>
<Link>Resources\Express.Net.Base.dll</Link>
</EmbeddedResource>
<EmbeddedResource Include="..\Library\Runtime\Microsoft.OpenApi.dll">
<LogicalName>Microsoft.OpenApi</LogicalName>
<Link>Resources\Microsoft.OpenApi.dll</Link>
</EmbeddedResource>
<EmbeddedResource Include="..\Library\Runtime\Swashbuckle.AspNetCore.Swagger.dll">
<LogicalName>Swashbuckle.AspNetCore.Swagger</LogicalName>
<Link>Resources\Swashbuckle.AspNetCore.Swagger.dll</Link>
</EmbeddedResource>
<EmbeddedResource Include="..\Library\Runtime\Swashbuckle.AspNetCore.SwaggerGen.dll">
<LogicalName>Swashbuckle.AspNetCore.SwaggerGen</LogicalName>
<Link>Resources\Swashbuckle.AspNetCore.SwaggerGen.dll</Link>
</EmbeddedResource>
<EmbeddedResource Include="..\Library\Runtime\Swashbuckle.AspNetCore.SwaggerUI.dll">
<LogicalName>Swashbuckle.AspNetCore.SwaggerUI</LogicalName>
<Link>Resources\Swashbuckle.AspNetCore.SwaggerUI.dll</Link>
</EmbeddedResource>
</ItemGroup>
</Project>