-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathBlazorEcommerce.Server.csproj
More file actions
34 lines (28 loc) · 1.6 KB
/
BlazorEcommerce.Server.csproj
File metadata and controls
34 lines (28 loc) · 1.6 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>12</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\BlazorEcommerce.Application\BlazorEcommerce.Application.csproj" />
<ProjectReference Include="..\..\BlazorEcommerce.Identity\BlazorEcommerce.Identity.csproj" />
<ProjectReference Include="..\..\BlazorEcommerce.Infrastructure\BlazorEcommerce.Infrastructure.csproj" />
<ProjectReference Include="..\..\BlazorEcommerce.Persistence\BlazorEcommerce.Persistence.csproj" />
<ProjectReference Include="..\Client\BlazorEcommerce.Client.csproj" />
<ProjectReference Include="..\Shared\BlazorEcommerce.Shared.csproj" />
</ItemGroup>
<!--<Target Name="NSwag" AfterTargets="PostBuildEvent" Condition=" '$(Configuration)' == 'Debug' ">
<Exec WorkingDirectory="$(ProjectDir)" EnvironmentVariables="ASPNETCORE_ENVIRONMENT=Development" Command="$(NSwagExe_Net60) run /variables:Configuration=$(Configuration)" />
</Target>-->
</Project>