Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
42 changes: 42 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build Antigen

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read #This is required for actions/checkout

steps:
- uses: actions/checkout@v4

- name: Set up .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.x'

- name: Build with dotnet
run: dotnet build --configuration Release

- name: Test with dotnet
run: dotnet test --configuration Release

- name: dotnet publish
if: github.event_name != 'pull_request'
run: dotnet publish Antigen/Antigen.csproj -c Release -o artifacts/publish

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v4
if: github.event_name != 'pull_request'
with:
name: antigen
path: artifacts/publish

97 changes: 49 additions & 48 deletions Antigen.sln
Original file line number Diff line number Diff line change
@@ -1,48 +1,49 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34003.232
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antigen", "Antigen\Antigen.csproj", "{4BA8106C-4D64-4F76-AA49-3A669AB31B82}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9FA00618-BD61-41BA-9044-1A08C274AA24}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Trimmer", "Trimmer\Trimmer.csproj", "{CE027BEA-870D-4821-886E-71E3F209A18B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExecutionEngine", "ExecutionEngine\ExecutionEngine.csproj", "{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utilities", "Utilities\Utilities.csproj", "{83B6CBCC-4955-436B-9380-EE50CDC69429}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4BA8106C-4D64-4F76-AA49-3A669AB31B82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4BA8106C-4D64-4F76-AA49-3A669AB31B82}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4BA8106C-4D64-4F76-AA49-3A669AB31B82}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4BA8106C-4D64-4F76-AA49-3A669AB31B82}.Release|Any CPU.Build.0 = Release|Any CPU
{CE027BEA-870D-4821-886E-71E3F209A18B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CE027BEA-870D-4821-886E-71E3F209A18B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CE027BEA-870D-4821-886E-71E3F209A18B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CE027BEA-870D-4821-886E-71E3F209A18B}.Release|Any CPU.Build.0 = Release|Any CPU
{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}.Release|Any CPU.Build.0 = Release|Any CPU
{83B6CBCC-4955-436B-9380-EE50CDC69429}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{83B6CBCC-4955-436B-9380-EE50CDC69429}.Debug|Any CPU.Build.0 = Debug|Any CPU
{83B6CBCC-4955-436B-9380-EE50CDC69429}.Release|Any CPU.ActiveCfg = Release|Any CPU
{83B6CBCC-4955-436B-9380-EE50CDC69429}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C8A4C87B-214A-406B-9FC6-68267A4E1493}
EndGlobalSection
EndGlobal

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 18
VisualStudioVersion = 18.7.11811.120 insiders
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Antigen", "Antigen\Antigen.csproj", "{4BA8106C-4D64-4F76-AA49-3A669AB31B82}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9FA00618-BD61-41BA-9044-1A08C274AA24}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.github\workflows\build.yml = .github\workflows\build.yml
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Trimmer", "Trimmer\Trimmer.csproj", "{CE027BEA-870D-4821-886E-71E3F209A18B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExecutionEngine", "ExecutionEngine\ExecutionEngine.csproj", "{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utilities", "Utilities\Utilities.csproj", "{83B6CBCC-4955-436B-9380-EE50CDC69429}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4BA8106C-4D64-4F76-AA49-3A669AB31B82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4BA8106C-4D64-4F76-AA49-3A669AB31B82}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4BA8106C-4D64-4F76-AA49-3A669AB31B82}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4BA8106C-4D64-4F76-AA49-3A669AB31B82}.Release|Any CPU.Build.0 = Release|Any CPU
{CE027BEA-870D-4821-886E-71E3F209A18B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CE027BEA-870D-4821-886E-71E3F209A18B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CE027BEA-870D-4821-886E-71E3F209A18B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CE027BEA-870D-4821-886E-71E3F209A18B}.Release|Any CPU.Build.0 = Release|Any CPU
{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1A2BB825-9952-479B-8F6A-7F0543B0A4FC}.Release|Any CPU.Build.0 = Release|Any CPU
{83B6CBCC-4955-436B-9380-EE50CDC69429}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{83B6CBCC-4955-436B-9380-EE50CDC69429}.Debug|Any CPU.Build.0 = Debug|Any CPU
{83B6CBCC-4955-436B-9380-EE50CDC69429}.Release|Any CPU.ActiveCfg = Release|Any CPU
{83B6CBCC-4955-436B-9380-EE50CDC69429}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C8A4C87B-214A-406B-9FC6-68267A4E1493}
EndGlobalSection
EndGlobal
5 changes: 1 addition & 4 deletions Antigen/Antigen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>Antigen</RootNamespace>
<UserSecretsId>ab71806a-3bd8-4fb1-b0e2-9450aec41a9f</UserSecretsId>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
Expand All @@ -21,9 +21,6 @@

<PropertyGroup>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<RestoreAdditionalProjectSources>
https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json
</RestoreAdditionalProjectSources>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion ExecutionEngine/ExecutionEngine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Trimmer/Trimmer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion Utilities/Utilities.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
3 changes: 1 addition & 2 deletions progress.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ TODO:
- Arrays
- Various configurations
- CSEs
- Classes
- CI pipeline
- Classes