build scripts and dotnet target change

This commit is contained in:
TheK0tYaRa 2025-06-15 19:24:57 +03:00
parent eef1b91aa3
commit 440ef2fac9
3 changed files with 9 additions and 1 deletions

4
build.sh Executable file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
echo "Building..."
exec dotnet build

4
run.sh Executable file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
echo "Running..."
exec dotnet run --no-build --project src/

View file

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<RollForward>Major</RollForward>
<PublishReadyToRun>false</PublishReadyToRun>
<TieredCompilation>false</TieredCompilation>