-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProcession.AdminWeb.csproj
More file actions
31 lines (25 loc) · 1.06 KB
/
Procession.AdminWeb.csproj
File metadata and controls
31 lines (25 loc) · 1.06 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Procession.Server.Common\Procession.Server.Common.csproj" />
<ProjectReference Include="..\Procession.Common\Procession.Common.csproj" />
<ProjectReference Include="..\Procession.Sqlite\Procession.Sqlite.csproj" />
<ProjectReference Include="..\Procession.Postgres\Procession.Postgres.csproj" />
</ItemGroup>
</Project>