-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEasyWay.Samples.csproj
More file actions
38 lines (32 loc) · 1.42 KB
/
EasyWay.Samples.csproj
File metadata and controls
38 lines (32 loc) · 1.42 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<UserSecretsId>5619067b-257f-4a24-9284-ec37783f640c</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>..</DockerfileContext>
<DockerComposeProjectPath>..\easy-way-samples-compose.dcproj</DockerComposeProjectPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Modules\**" />
<Content Remove="Modules\**" />
<EmbeddedResource Remove="Modules\**" />
<None Remove="Modules\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\source\EasyWay.EntityFrameworkCore\EasyWay.EntityFrameworkCore.csproj" />
<ProjectReference Include="..\..\source\EasyWay.FluentValidation\EasyWay.FluentValidation.csproj" />
<ProjectReference Include="..\..\source\EasyWay.WebApi\EasyWay.WebApi.csproj" />
<ProjectReference Include="..\..\source\EasyWay\EasyWay.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="EasyWay" />
</ItemGroup>
</Project>