2021-04-29 08:02:24 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-04-08 15:12:09 -07:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2021-05-01 11:04:47 -07:00
|
|
|
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\modules\Espresso</OutputPath>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)\modules\Espresso\</OutputPath>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)\modules\Espresso\</OutputPath>
|
|
|
|
|
|
<DefineConstants>TRACE;RELEASE</DefineConstants>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2021-04-08 15:12:09 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-04-29 08:18:35 -07:00
|
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
|
2021-04-20 08:31:18 -07:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2021-04-29 08:02:24 -07:00
|
|
|
|
<PackageReference Include="NLog" Version="4.7.9" />
|
2021-04-08 15:12:09 -07:00
|
|
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20071.2" />
|
2021-04-28 18:27:42 -07:00
|
|
|
|
<PackageReference Include="System.Reactive" Version="5.0.0" />
|
2021-04-24 11:06:13 -07:00
|
|
|
|
<PackageReference Include="System.Runtime.Caching" Version="6.0.0-preview.1.21102.12" />
|
2021-04-08 15:12:09 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2021-04-29 08:02:24 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Update="Program.cs">
|
|
|
|
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="NLog.config">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2021-04-08 15:12:09 -07:00
|
|
|
|
</Project>
|