Update 'Home'
parent
4e0899ddb5
commit
91d14c91b4
43
Home.md
43
Home.md
@ -6,6 +6,49 @@ Contents:
|
||||
* [[Code Snippets]].
|
||||
* Installing [[dotnet on Ubuntu]].
|
||||
|
||||
## Build
|
||||
|
||||
From a WSL shell:
|
||||
```shell
|
||||
cd ~/src/sneak/DesktopGL
|
||||
dotnet build && pushd bin/Debug/net5.0 && ./DesktopGL.exe && popd
|
||||
```
|
||||
|
||||
From a PowerShell:
|
||||
```shell
|
||||
cd ~/src/sneak/DesktopGL
|
||||
dotnet build
|
||||
cd bin/Debug/net5.0
|
||||
./DesktopGL.exe
|
||||
cd ../../..
|
||||
```
|
||||
|
||||
Changes to `~/src/Newtonsoft.Json`:
|
||||
|
||||
```diff
|
||||
--- 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
|
||||
|
||||
* [bcs.sh](bcs.sh%3A-Bad-Code-Search): Bad Code Search
|
||||
|
Loading…
Reference in New Issue
Block a user