It can install now. Requires pexec to be present This may be due to an upstream issue with spectre.console affecting how stdin/stdout are handled. TODO: - Add backup/restore functionality - Refactor sections for neatness - Improve UX
20 lines
678 B
XML
20 lines
678 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<RootNamespace>edge_install</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Serilog" Version="2.12.0" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
|
<PackageReference Include="SharpCompress" Version="0.33.0" />
|
|
<PackageReference Include="Spectre.Console" Version="0.47.0" />
|
|
<PackageReference Include="System.Commandline" Version="2.0.0-beta4.22272.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|