Skip to content

Commit 8dc4f0c

Browse files
authored
Merge pull request #17 from xnodeoncode/development
Shared UI Implementation is complete. Product development can now diverge safely with common features being found in the Shared UI library.
2 parents 62ff96e + 305da47 commit 8dc4f0c

1,462 files changed

Lines changed: 121364 additions & 183307 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,11 @@ jobs:
2525
- name: Build
2626
run: dotnet build Aquiis.sln --no-restore --configuration Release
2727

28-
- name: Run focused tests
29-
run: dotnet test Aquiis.SimpleStart.Tests/Aquiis.SimpleStart.Tests.csproj --no-build --configuration Release --verbosity normal
28+
- name: Test Core Layer
29+
run: dotnet test 6-Tests/Aquiis.Core.Tests/Aquiis.Core.Tests.csproj --no-build --configuration Release --verbosity normal
30+
31+
- name: Test Application Layer
32+
run: dotnet test 6-Tests/Aquiis.Application.Tests/Aquiis.Application.Tests.csproj --no-build --configuration Release --verbosity normal
33+
34+
- name: Test Shared UI Components (bUnit)
35+
run: dotnet test 6-Tests/Aquiis.UI.Shared.Tests/Aquiis.UI.Shared.Tests.csproj --no-build --configuration Release --verbosity normal

.gitignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* Ignore file for Aquiis projects */
22

3-
# Build outputs - ignore bin/obj in project folders
4-
Aquiis.*/bin/
5-
Aquiis.*/obj/
3+
# Build outputs - ignore bin/obj in all project folders
4+
**/bin/
5+
**/obj/
66

77
# Electron host - track the folder but ignore node_modules
88
obj/Host/node_modules/
@@ -18,6 +18,8 @@ node_modules/
1818

1919
Data/Backups/**
2020
/Data/Backups/**
21+
Data/Migrations/**
22+
/Data/Migrations/**
2123

2224
/Data/app*
2325

0-Aquiis.Core/Aquiis.Core.csproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net10.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<Version>0.2.0</Version>
8+
</PropertyGroup>
9+
10+
</Project>

0 commit comments

Comments
 (0)