diff --git a/TXT/Build.txt b/TXT/Build.txt new file mode 100644 index 0000000..d699f3e --- /dev/null +++ b/TXT/Build.txt @@ -0,0 +1,12 @@ +首先,如果希望编译程序,那么必须安装.NET8.0 SDK +下载链接:https://dotnet.microsoft.com/zh-cn/download/dotnet/thank-you/sdk-8.0.411-windows-x64-installer + +使用一下指令编译 + +x86: + +dotnet publish AppStore.csproj -c Release -r win-x86 --self-contained false /p:Optimize=true /p:DebugType=None + +x64: + +dotnet publish AppStore.csproj -c Release -r win-x64 --self-contained false /p:Optimize=true /p:DebugType=None \ No newline at end of file diff --git a/TXT/Run.txt b/TXT/Run.txt new file mode 100644 index 0000000..4f533bd --- /dev/null +++ b/TXT/Run.txt @@ -0,0 +1,7 @@ +如果希望运行,那么必须安装.NET8.0 SDK + +下载链接:https://dotnet.microsoft.com/zh-cn/download/dotnet/thank-you/sdk-8.0.411-windows-x64-installer + +使用一下指令运行: + +dotnet run \ No newline at end of file