14 Home
Colin McMillen edited this page 3 years ago

Contents:

Build

From a WSL shell:

cd ~/src/sneak/DesktopGL
dotnet build && pushd bin/Debug/net5.0 && ./DesktopGL.exe && popd

From a PowerShell:

cd ~/src/sneak/DesktopGL
dotnet build
cd bin/Debug/net5.0
./DesktopGL.exe
cd ../../..

Changes to ~/src/Newtonsoft.Json:

--- a/Src/Newtonsoft.Json/Newtonsoft.Json.csproj
+++ b/Src/Newtonsoft.Json/Newtonsoft.Json.csproj
@@ -1,6 +1,6 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <TargetFrameworks Condition="'$(LibraryFrameworks)'==''">net45;net40;net35;net20;netstandard1.0;netstandard1.3;netstandard2.0</TargetFrameworks>
+    <TargetFrameworks Condition="'$(LibraryFrameworks)'==''">net45;net40;net20;netstandard1.0;netstandard1.3;netstandard2.0</TargetFrameworks>
     <TargetFrameworks Condition="'$(LibraryFrameworks)'!=''">$(LibraryFrameworks)</TargetFrameworks>
     <LangVersion>9.0</LangVersion>
     <!-- version numbers will be updated by build -->
diff --git a/Src/global.json b/Src/global.json
index 6d19c9f6..5ecd5ee6 100644
--- a/Src/global.json
+++ b/Src/global.json
@@ -1,5 +1,5 @@
 {
   "sdk": {
-    "version": "5.0.200"
+    "version": "5.0.301"
   }
}

Tool Documentation