Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
319d153
Bump BasicTests from netcoreapp2.1 to net6.0
Arlodotexe Oct 5, 2022
2f0e6e5
Revert "Bump BasicTests from netcoreapp2.1 to net6.0"
Arlodotexe Oct 5, 2022
dd14ab5
Use net6 for WinUI
Arlodotexe Oct 5, 2022
7059c7b
Revert "Use net6 for WinUI"
Arlodotexe Oct 6, 2022
a2836cb
Use windows-latest instead of windows-2022
Arlodotexe Oct 6, 2022
c6a0e62
Revert "Downgrade the WindowsAppSDK version back to 1.0.4"
Arlodotexe Oct 19, 2022
4cb1e66
Revert
Arlodotexe Oct 19, 2022
e145ac2
Enable binlogs
Arlodotexe Oct 19, 2022
c367f25
Enable binlogs
Arlodotexe Oct 19, 2022
a543bab
Enable binlog via cake
Arlodotexe Oct 19, 2022
08dc810
Fixed binlog error and fixed invalid revert merge
Arlodotexe Oct 19, 2022
a2628eb
Merge branch 'fix/ci-errors' of https://github.com/Arlodotexe/ColorCo…
Arlodotexe Oct 19, 2022
560eab9
Revert "Revert "Downgrade the WindowsAppSDK version back to 1.0.4""
Arlodotexe Oct 19, 2022
794d0c1
Revert to net5.0 for WinUI
Arlodotexe Oct 19, 2022
aac53a5
Invoke msbuild via shell instead of Cake
Arlodotexe Oct 19, 2022
e5fa34b
Fixed indentation error
Arlodotexe Oct 20, 2022
5677908
Revert "Fixed indentation error"
Arlodotexe Oct 24, 2022
0edb739
Revert "Invoke msbuild via shell instead of Cake"
Arlodotexe Oct 24, 2022
49e7b44
Removed workaround for fixed issue
Arlodotexe Oct 24, 2022
b96cc36
Disabled binary logger output
Arlodotexe Oct 24, 2022
9ec9da3
Revert "Revert "Invoke msbuild via shell instead of Cake""
Arlodotexe Oct 24, 2022
dc5b485
Revert "Revert "Fixed indentation error""
Arlodotexe Oct 24, 2022
c5cca1d
Revert "Removed workaround for fixed issue"
Arlodotexe Oct 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions ColorCode.Core/Common/LanguageId.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,5 @@ public static class LanguageId
public const string Haskell = "haskell";
public const string Markdown = "markdown";
public const string Fortran = "fortran";
public const string Python = "python";
public const string MatLab = "matlab";
}
}
113 changes: 0 additions & 113 deletions ColorCode.Core/Compilation/Languages/MatLab.cs

This file was deleted.

142 changes: 0 additions & 142 deletions ColorCode.Core/Compilation/Languages/Python.cs

This file was deleted.

20 changes: 0 additions & 20 deletions ColorCode.Core/Languages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ static Languages()
Load<Haskell>();
Load<Markdown>();
Load<Fortran>();
Load<Python>();
Load<MatLab>();
}

/// <summary>
Expand Down Expand Up @@ -259,24 +257,6 @@ public static ILanguage Fortran
get { return LanguageRepository.FindById(LanguageId.Fortran); }
}

/// <summary>
/// Language support for Python.
/// </summary>
/// <value>Language support for Python.</value>
public static ILanguage Python
{
get { return LanguageRepository.FindById(LanguageId.Python); }
}

/// <summary>
/// Language support for MATLAB.
/// </summary>
/// <value>Language support for MATLAB.</value>
public static ILanguage MATLAB
{
get { return LanguageRepository.FindById(LanguageId.MatLab); }
}

/// <summary>
/// Finds a loaded language by the specified identifier.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion Tests/ColorCode.BasicTests/ColorCode.BasicTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down
19 changes: 10 additions & 9 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pr:
- rel/*

pool:
vmImage: windows-2022
vmImage: windows-latest

variables:
BuildConfiguration: Release
Expand Down Expand Up @@ -47,15 +47,16 @@ steps:

- powershell: .\build\Install-WindowsSdkISO.ps1 18362

- task: DotNetCoreCLI@2
inputs:
command: custom
custom: msbuild
arguments: /t:restore .\ColorCode.sln
displayName: NuGet restore
# Build solution
- script: msbuild /r /bl .\ColorCode.sln
displayName: Build solution

- powershell: .\build\build.ps1
displayName: Build
- task: PublishBuildArtifacts@1
displayName: Publish Package Artifacts
condition: always()
inputs:
pathToPublish: .\msbuild.binlog
artifactName: Binlogs

- task: PowerShell@2
displayName: Authenticode Sign Packages
Expand Down