Table of Contents
This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Contents:
- Weekly Snippets: development progress in bullet-point form.
- Style Guide for C# and Python code.
- Development environment setup.
- Cookbook of random shell tidbits.
- Code Snippets.
- Installing dotnet on Ubuntu.
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"
}
}