-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathDotVVM.Samples.BasicSamples.Api.AspNetCore.csproj
More file actions
36 lines (31 loc) · 1.58 KB
/
DotVVM.Samples.BasicSamples.Api.AspNetCore.csproj
File metadata and controls
36 lines (31 loc) · 1.58 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>$(DotnetCoreTargetVersion)</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="**/*.dothtml;**/*.dotmaster;**/*.dotcontrol" Exclude="obj/**/*.*;bin/**/*.*" CopyToPublishDirectory="Always" />
<None Remove="**/*.dothtml;**/*.dotmaster;**/*.dotcontrol" />
</ItemGroup>
<ItemGroup>
<None Remove="dotvvm_serialized_config.json.tmp" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.1.0" />
<PackageReference Include="NSwag.AspNetCore" Version="14.0.0" />
<PackageReference Include="NSwag.CodeGeneration.CSharp" Version="14.0.0" />
<PackageReference Include="NSwag.CodeGeneration.TypeScript" Version="14.0.0" />
<PackageReference Include="NSwag.Generation.WebApi" Version="14.0.0" />
<PackageReference Include="NJsonSchema.CodeGeneration" Version="11.0.0" />
<PackageReference Include="Faker.NETCore" Version="1.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.5" />
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" Version="6.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../Api/Swashbuckle.AspNetCore/DotVVM.Framework.Api.Swashbuckle.AspNetCore.csproj" />
<ProjectReference Include="../../Framework/Hosting.AspNetCore/DotVVM.Framework.Hosting.AspNetCore.csproj" />
<ProjectReference Include="../Api.Common/DotVVM.Samples.BasicSamples.Api.Common.csproj" />
</ItemGroup>
</Project>