Skip to content
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,11 @@ jobs:
- name: Build
run: dotnet build Aquiis.sln --no-restore --configuration Release

- name: Run focused tests
run: dotnet test Aquiis.SimpleStart.Tests/Aquiis.SimpleStart.Tests.csproj --no-build --configuration Release --verbosity normal
- name: Test Core Layer
run: dotnet test 6-Tests/Aquiis.Core.Tests/Aquiis.Core.Tests.csproj --no-build --configuration Release --verbosity normal

- name: Test Application Layer
run: dotnet test 6-Tests/Aquiis.Application.Tests/Aquiis.Application.Tests.csproj --no-build --configuration Release --verbosity normal

- name: Test Shared UI Components (bUnit)
run: dotnet test 6-Tests/Aquiis.UI.Shared.Tests/Aquiis.UI.Shared.Tests.csproj --no-build --configuration Release --verbosity normal
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* Ignore file for Aquiis projects */

# Build outputs - ignore bin/obj in project folders
Aquiis.*/bin/
Aquiis.*/obj/
# Build outputs - ignore bin/obj in all project folders
**/bin/
**/obj/

# Electron host - track the folder but ignore node_modules
obj/Host/node_modules/
Expand All @@ -18,6 +18,8 @@ node_modules/

Data/Backups/**
/Data/Backups/**
Data/Migrations/**
/Data/Migrations/**

/Data/app*

Expand Down
10 changes: 10 additions & 0 deletions 0-Aquiis.Core/Aquiis.Core.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.2.0</Version>
</PropertyGroup>

</Project>
Loading