feat: tools for offline development and running

This commit is contained in:
2026-06-17 10:42:25 +03:00
parent e1af90df18
commit 82d0ba4af3
8 changed files with 40 additions and 5 deletions
+12
View File
@@ -3,6 +3,18 @@
## ##
## Get latest from `dotnet new gitignore` ## 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
*.db-shm *.db-shm
*.db-wal *.db-wal
+15 -1
View File
@@ -1,8 +1,22 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<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> <packageSources>
<clear /> <clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" protocol="3" />
<add key="local" value="./nuget_packages/" /> <add key="local" value="./nuget_packages/" />
</packageSources> </packageSources>
<disabledPackageSources>
<add key="nuget.org" value="true" />
</disabledPackageSources>
</configuration> </configuration>
BIN
View File
Binary file not shown.
+5
View File
@@ -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
+4
View File
@@ -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.