Skip to content

Commit

Permalink
Tidied up the code.
Browse files Browse the repository at this point in the history
  • Loading branch information
FirehawkV21 committed Dec 24, 2021
1 parent f324d1e commit 125f2d0
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 18 deletions.
8 changes: 3 additions & 5 deletions RMMVCookTool.CLI/RMMVCookTool.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyVersion>2.2.0.21279</AssemblyVersion>
<FileVersion>2.2.0.21279</FileVersion>
<AssemblyVersion>2.2.0.21358</AssemblyVersion>
<FileVersion>2.2.0.21358</FileVersion>
<ApplicationIcon>Brick-02-WF.ico</ApplicationIcon>
<StartupObject>RMMVCookTool.CLI.Program</StartupObject>
<AssemblyTitle>RPG Maker MV Cook Tool (CLI Version)</AssemblyTitle>
<PackageId>StudioACE.RMMVCookTool.CLI</PackageId>
<Version>2.2.0-20211006</Version>
<Version>2.2.0-20211224</Version>
<Authors>AceOfAces</Authors>
<Company>Studio ACE</Company>
<Product>RPG Maker MV Cook Tool</Product>
Expand Down Expand Up @@ -66,8 +66,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NETCore.Platforms" Version="6.0.1" />
<PackageReference Include="Microsoft.NETCore.Targets" Version="6.0.0-preview.4.21253.7" />
<PackageReference Include="Spectre.Console" Version="0.43.0" />
</ItemGroup>

Expand Down
2 changes: 0 additions & 2 deletions RMMVCookTool.Core/Compiler/CompilerProject.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.IO.Compression;
using System.Runtime.CompilerServices;
using RMMVCookTool.Core.Utilities;

namespace RMMVCookTool.Core.Compiler
Expand Down Expand Up @@ -53,7 +52,6 @@ public CompilerProject(string project, string fileExtension, bool removeAfterCom
/// Starts the NW.js compiler.
/// </summary>
/// <param name="index">The index in the list.</param>
[MethodImplAttribute(MethodImplOptions.AggressiveOptimization)]
public void CompileFile(int index)
{
CompilerUtilities.RecordToLog("Setting up the compiler...", 3);
Expand Down
6 changes: 3 additions & 3 deletions RMMVCookTool.Core/RMMVCookTool.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<AssemblyVersion>2.0.4.21279</AssemblyVersion>
<FileVersion>2.0.4.21279</FileVersion>
<Version>2.0.4-20211006</Version>
<AssemblyVersion>2.0.5.21358</AssemblyVersion>
<FileVersion>2.0.5.21279</FileVersion>
<Version>2.0.5-20211224</Version>
<Platforms>AnyCPU;x64;x86;ARM64</Platforms>
<AssemblyTitle>RPG Maker MV Cook Tool Core</AssemblyTitle>
<Authors>AceOfAces</Authors>
Expand Down
1 change: 0 additions & 1 deletion RMMVCookTool.Core/Utilities/CompilerUtilities.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Serilog;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;

namespace RMMVCookTool.Core.Utilities
Expand Down
6 changes: 3 additions & 3 deletions RMMVCookTool.GUI/RMMVCookTool.GUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<AssemblyVersion>3.2.0.21279</AssemblyVersion>
<FileVersion>3.2.0.21279</FileVersion>
<AssemblyVersion>3.2.1.21358</AssemblyVersion>
<FileVersion>3.2.1.21358</FileVersion>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Brick-02-WF.ico</ApplicationIcon>
<NeutralLanguage>en</NeutralLanguage>
Expand All @@ -14,7 +14,7 @@
<Authors>AceOfAces</Authors>
<Company>Studio ACE</Company>
<Product>RPG Maker MV Cook Tool</Product>
<Version>3.2.0-20211006</Version>
<Version>3.2.1-20211224</Version>
<PublishReadyToRun>true</PublishReadyToRun>
<TieredCompilation>true</TieredCompilation>
<TieredCompilationQuickJit>true</TieredCompilationQuickJit>
Expand Down
8 changes: 4 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ trigger:
- master

pool:
vmImage: 'windows-2019'
vmImage: 'windows-2022'

variables:
solution: '**/*.sln'
Expand All @@ -19,20 +19,20 @@ steps:
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '5.0.300'
version: '6.0.100'

- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: 'RMMVCookTool.CLI\RMMVCookTool.CLI.csproj'
arguments: '-f net5.0'
arguments: '-f net6.0'


- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: 'RMMVCookTool.GUI\RMMVCookTool.GUI.csproj'
arguments: '-f net5.0-windows'
arguments: '-f net6.0-windows'

- task: VSTest@2
inputs:
Expand Down

0 comments on commit 125f2d0

Please sign in to comment.