Skip to content

Commit

Permalink
Merge pull request #110 from Acrozi/Andreybranch
Browse files Browse the repository at this point in the history
Fixed to .cproj file and structure. Included xUnit library in .cproj
  • Loading branch information
Acrozi committed Jan 18, 2024
2 parents d9d90c5 + 234b35d commit 4bc4b6c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Upload EXE
uses: actions/upload-artifact@v2
with:
name: Published
name: .ZIP-acrhive
path: publish

- name: Create Downloaded Artifact Directory
Expand All @@ -53,5 +53,5 @@ jobs:
- name: Download EXE
uses: actions/download-artifact@v2
with:
name: Published
name: .ZIP-acrhive
path: downloaded-artifact
1 change: 0 additions & 1 deletion GlobalUsings.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<AdditionalUsings>global using Xunit;</AdditionalUsings>
</PropertyGroup>

<PropertyGroup>
Expand Down
3 changes: 2 additions & 1 deletion xUnitTest/xUnitTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<AdditionalUsings>global using Xunit;</AdditionalUsings>
</PropertyGroup>

<ItemGroup>
Expand All @@ -26,6 +27,6 @@

<ItemGroup>
<ProjectReference Include="..\PersonNummerValidationTool\PersonNummerValidationTool.csproj" />
</ItemGroup>
</ItemGroup>

</Project>

0 comments on commit 4bc4b6c

Please sign in to comment.