-
Notifications
You must be signed in to change notification settings - Fork 18
/
CryptoProfitSwitcher.csproj
39 lines (36 loc) · 1.57 KB
/
CryptoProfitSwitcher.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
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TrimUnusedDependencies>true</TrimUnusedDependencies>
<LinkDuringPublish>true</LinkDuringPublish>
<ShowLinkerSizeComparison>true</ShowLinkerSizeComparison>
<Version>7.3.0</Version>
<Configurations>Debug;Release;</Configurations>
<ApplicationIcon>icon.ico</ApplicationIcon>
<AssemblyVersion>7.3.0.0</AssemblyVersion>
<FileVersion>7.3.0.0</FileVersion>
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
<AssemblyName>CryptoProfitSwitcher</AssemblyName>
<RootNamespace>CryptoProfitSwitcher</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Alba.CsConsoleFormat-NoXaml" Version="1.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />
</ItemGroup>
<ItemGroup>
<None Update="config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</None>
<None Update="ThirdPartyLicenses.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>