forked from ReduxISU/Redux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPI.csproj
More file actions
31 lines (25 loc) · 1.14 KB
/
Copy pathAPI.csproj
File metadata and controls
31 lines (25 loc) · 1.14 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>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- <EnableDefaultItems>false</EnableDefaultItems> -->
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- <NoWarn>$(NoWarn);1591</NoWarn> -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SPADE" Version="0.1.2" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.2.1" />
<Content Include="Problems\**" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
<!-- Tests live in their own project (redux-tests/redux-tests.csproj). The
Sdk.Web globs would otherwise pull redux-tests/**/*.cs into API.dll and
copy redux-tests/**/*.json (e.g. obj/project.assets.json) to the output. -->
<ItemGroup>
<Compile Remove="redux-tests/**" />
<Content Remove="redux-tests/**" />
<None Remove="redux-tests/**" />
</ItemGroup>
</Project>