Compare commits

..

No commits in common. "master" and "v1.0" have entirely different histories.
master ... v1.0

2 changed files with 8 additions and 6 deletions

View file

@ -1,3 +1,5 @@
# shiftos-challenge-netcore
## Ported to .NET Core 3.0+ by Alee. Originally forked from [acidiclight](https://acidiclight.dev)
Can I rewrite ShiftOS in under a week?
# Ported to .NET Core 3.0 by Alee and originally developed by Alkaline Thunder.

View file

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0-windows</TargetFrameworks>
<TargetFrameworks>netcoreapp3.0;net461</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
@ -20,7 +20,7 @@
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Compile Include="..\ShiftOS\**\*.cs" />
<Compile Include ="..\ShiftOS\**\*.cs" />
</ItemGroup>
<ItemGroup>
<Compile Update="Desktop.cs">
@ -491,8 +491,8 @@
<None Include="Resources\3beepvirus.wav" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="docopt.net" Version="0.8.1" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="8.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="docopt.net" Version="0.6.1.10" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="3.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
</ItemGroup>
</Project>