-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlowboard-Project-Management-System-Backend.csproj
More file actions
33 lines (28 loc) · 1.22 KB
/
Copy pathFlowboard-Project-Management-System-Backend.csproj
File metadata and controls
33 lines (28 loc) · 1.22 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>Flowboard_Project_Management_System_Backend</RootNamespace>
</PropertyGroup>
<ItemGroup>
<!-- Exclude the sibling Azure Functions restructuring projects: they live in
subdirectories of this project's root, and the Web SDK's default globs
(**/*.cs, **/*.json) are recursive and would otherwise pull their code
and config files into this project too. -->
<Compile Remove="Flowboard.Core/**" />
<Compile Remove="Flowboard.Functions/**" />
<Content Remove="Flowboard.Core/**" />
<Content Remove="Flowboard.Functions/**" />
<None Remove="Flowboard.Core/**" />
<None Remove="Flowboard.Functions/**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetEnv" Version="3.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Flowboard.Core/Flowboard.Core.csproj" />
</ItemGroup>
</Project>