forked from naldocarvalho/EasyConsole.Core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEasyConsole.csproj
29 lines (26 loc) · 1.09 KB
/
EasyConsole.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Version>20.12.126</Version>
<FileVersion>20.12.126</FileVersion>
<AssemblyVersion>20.12.126</AssemblyVersion>
<Configurations>Debug;Release</Configurations>
<SonarQubeExclude>true</SonarQubeExclude>
<AssemblyName>EasyConsole</AssemblyName>
<RootNamespace>EasyConsole</RootNamespace>
<RuntimeIdentifiers>win-x64;win-arm;win-arm64;linux-arm;linux-arm64;linux-x64</RuntimeIdentifiers>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<PublishReadyToRun>false</PublishReadyToRun>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>Debug</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>Release</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<DefineConstants />
</PropertyGroup>
</Project>