-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
open-cue-service.csproj
33 lines (31 loc) · 1.23 KB
/
open-cue-service.csproj
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>
<Title>Open CUE Service</Title>
<Version>1.1.0</Version>
<Authors>Legion2</Authors>
<Description>HTTP REST API service for Open CUE CLI</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Legion2/open-cue-service</RepositoryUrl>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>OpenCueService</RootNamespace>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>None</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NSwag.AspNetCore" Version="13.19.0" />
</ItemGroup>
<ItemGroup>
<Content Include="CgSDK.x64_2015.dll" CopyToPublishDirectory="Always" />
<Content Remove="nswag.json" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<Content Remove="appsettings.*.json" />
</ItemGroup>
</Project>