forked from amkovkov/GranuSightSoftware2
feat: tools for offline development and running
This commit is contained in:
+12
@@ -3,6 +3,18 @@
|
||||
##
|
||||
## Get latest from `dotnet new gitignore`
|
||||
|
||||
.zed
|
||||
*.png
|
||||
cache
|
||||
bin\\Debug
|
||||
capture.sh
|
||||
cspell*
|
||||
nuget_packages
|
||||
nuget_packages_cache
|
||||
dotnet
|
||||
dotnet_windows
|
||||
nuget.exe
|
||||
|
||||
*.db
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
|
||||
+19
-5
@@ -1,8 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<packageSources>
|
||||
<clear />
|
||||
<add key="nuget" value="https://api.nuget.org/v3/index.json" protocol="3" />
|
||||
<add key="local" value="./nuget_packages/" />
|
||||
</packageSources>
|
||||
|
||||
<config>
|
||||
<!-- <add key="http_proxy" value="http://127.0.0.1:1080" /> -->
|
||||
<!-- <add key="https_proxy" value="http://127.0.0.1:1080" /> -->
|
||||
<!-- <add key="no_proxy" value="localhost" /> -->
|
||||
<add key="globalPackagesFolder" value="./nuget_packages_cache" />
|
||||
<add key="pluginsCacheDirectory" value="./nuget_plugins_cache" />
|
||||
<add key="allowInsecureConnections" value="false" />
|
||||
</config>
|
||||
|
||||
<packageSources>
|
||||
<clear />
|
||||
<add key="local" value="./nuget_packages/" />
|
||||
</packageSources>
|
||||
|
||||
<disabledPackageSources>
|
||||
<add key="nuget.org" value="true" />
|
||||
</disabledPackageSources>
|
||||
|
||||
</configuration>
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
$env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = "1"
|
||||
$env:DOTNET_MULTILEVEL_LOOKUP = "0"
|
||||
$env:DOTNET_CLI_TELEMETRY_OPTOUT = "1"
|
||||
|
||||
.\dotnet_windows\dotnet.exe build --no-dependencies
|
||||
@@ -0,0 +1,4 @@
|
||||
set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
|
||||
set DOTNET_MULTILEVEL_LOOKUP=0
|
||||
set DOTNET_CLI_TELEMETRY_OPTOUT=1
|
||||
./dotnet/dotnet build --no-dependencies
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user