Changed build script + clean-up
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Any CPU</Platform>
|
||||
<PublishDir>bin\Release\64\</PublishDir>
|
||||
<PublishProtocol>FileSystem</PublishProtocol>
|
||||
<TargetFramework>net5.0-windows</TargetFramework>
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
<SelfContained>false</SelfContained>
|
||||
<PublishSingleFile>True</PublishSingleFile>
|
||||
<PublishReadyToRun>False</PublishReadyToRun>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Any CPU</Platform>
|
||||
<PublishDir>bin\Release\86\</PublishDir>
|
||||
<PublishProtocol>FileSystem</PublishProtocol>
|
||||
<TargetFramework>net5.0-windows</TargetFramework>
|
||||
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
|
||||
<SelfContained>false</SelfContained>
|
||||
<PublishSingleFile>True</PublishSingleFile>
|
||||
<PublishReadyToRun>False</PublishReadyToRun>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -20,8 +20,11 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="Resources\**" />
|
||||
<Compile Remove="RyzStudio\**" />
|
||||
<EmbeddedResource Remove="Resources\**" />
|
||||
<EmbeddedResource Remove="RyzStudio\**" />
|
||||
<None Remove="Resources\**" />
|
||||
<None Remove="RyzStudio\**" />
|
||||
</ItemGroup>
|
||||
|
||||
@ -33,6 +36,11 @@
|
||||
<EmbeddedResource Remove="UIResource.resx" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove=".gitignore" />
|
||||
<None Remove="build.bat" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="RyzStudio3">
|
||||
<HintPath>References\RyzStudio3.dll</HintPath>
|
||||
|
Before Width: | Height: | Size: 601 B |
Before Width: | Height: | Size: 417 B |
Before Width: | Height: | Size: 590 B |
Before Width: | Height: | Size: 410 B |
Before Width: | Height: | Size: 597 B |
Before Width: | Height: | Size: 421 B |
Before Width: | Height: | Size: 713 B |
Before Width: | Height: | Size: 467 B |
Before Width: | Height: | Size: 612 B |
Before Width: | Height: | Size: 419 B |
Before Width: | Height: | Size: 372 B |
Before Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 352 B |
Before Width: | Height: | Size: 288 B |
Before Width: | Height: | Size: 559 B |
Before Width: | Height: | Size: 398 B |
Before Width: | Height: | Size: 451 B |
Before Width: | Height: | Size: 300 B |
Before Width: | Height: | Size: 382 B |
Before Width: | Height: | Size: 289 B |
Before Width: | Height: | Size: 33 KiB |
5
build.bat
Normal file
@ -0,0 +1,5 @@
|
||||
rmdir /s /q "bin\Release\64\"
|
||||
dotnet publish skye.sln -r win-x64 -c Release /p:PublishSingleFile=true /p:SelfContained=false /p:PublishReadyToRunfalse=true /p:PublishDir="bin\Release\64\"
|
||||
|
||||
rmdir /s /q "bin\Release\86\"
|
||||
dotnet publish skye.sln -r win-x86 -c Release /p:PublishSingleFile=true /p:SelfContained=false /p:PublishReadyToRunfalse=true /p:PublishDir="bin\Release\86\"
|