Compare commits

...

4 commits
v1.0 ... master

Author SHA1 Message Date
Andrew Lee
dbb96de19f
Update README.md 2024-03-11 11:07:47 -04:00
Andrew Lee
32882d8b87
Updated .NET version 2024-02-27 18:22:13 -05:00
Andrew Lee
a227f0e3df .NET 5.0 only build added... 2020-12-22 11:22:34 -05:00
Alee
8269782fe3
Update README.md 2019-09-28 11:30:16 -04:00
2 changed files with 6 additions and 8 deletions

View file

@ -1,5 +1,3 @@
# 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>netcoreapp3.0;net461</TargetFrameworks>
<TargetFrameworks>net8.0-windows</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
@ -491,8 +491,8 @@
<None Include="Resources\3beepvirus.wav" />
</ItemGroup>
<ItemGroup>
<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" />
<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" />
</ItemGroup>
</Project>