Skip to content

Commit abef505

Browse files
committed
Feat: Package updates
1 parent 95f932e commit abef505

File tree

4 files changed

+38
-1
lines changed

4 files changed

+38
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
- name: Run tests - Extensions
3535
run: dotnet run -c Release --no-restore --no-build
3636
working-directory: "tests/Tests.CodeOfChaos.Types.DataSeeder"
37+
- name: Run tests - CodeOfChaos.Types.UnitOfWork
38+
run: dotnet run -c Release --no-restore --no-build
39+
working-directory: "tests/Tests.CodeOfChaos.Types.UnitOfWork"
3740

3841
- name: Publish to NuGet
3942
env:
@@ -42,3 +45,4 @@ jobs:
4245
dotnet nuget push src/CodeOfChaos.Types/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
4346
dotnet nuget push src/CodeOfChaos.Types.TypedValueStore/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
4447
dotnet nuget push src/CodeOfChaos.Types.DataSeeder/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
48+
dotnet nuget push src/CodeOfChaos.Types.UnitOfWork/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate

src/CodeOfChaos.Types.UnitOfWork/CodeOfChaos.Types.UnitOfWork.csproj

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@
44
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7+
8+
<!-- Main package name -->
9+
<PackageId>CodeOfChaos.Types.UnitOfWork</PackageId>
10+
<Version>0.11.0</Version>
11+
<Authors>Anna Sas</Authors>
12+
<Description>A small library housing UnitOfWork typings for EntityFrameworkCore</Description>
13+
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>
14+
<PackageTags>typing unitofwork uow entityframework</PackageTags>
15+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
16+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
17+
<IncludeSymbols>true</IncludeSymbols>
18+
<DebugType>embedded</DebugType>
19+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
20+
<PackageReadmeFile>README.md</PackageReadmeFile>
21+
<PackageIcon>icon.png</PackageIcon>
22+
723
</PropertyGroup>
824

925
<ItemGroup>

src/CodeOfChoas.Types.UnitOfWork.Contracts/CodeOfChoas.Types.UnitOfWork.Contracts.csproj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@
66
<Nullable>enable</Nullable>
77

88
<RootNamespace>CodeOfChaos.Types.UnitOfWork</RootNamespace>
9+
10+
<!-- Main package name -->
11+
<PackageId>CodeOfChaos.Types.UnitOfWork.Contracts</PackageId>
12+
<Version>0.11.0</Version>
13+
<Authors>Anna Sas</Authors>
14+
<Description>A small library housing UnitOfWork typings for EntityFrameworkCore</Description>
15+
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>
16+
<PackageTags>typing unitofwork uow entityframework</PackageTags>
17+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
18+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
19+
<IncludeSymbols>true</IncludeSymbols>
20+
<DebugType>embedded</DebugType>
21+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
22+
<PackageReadmeFile>README.md</PackageReadmeFile>
23+
<PackageIcon>icon.png</PackageIcon>
924
</PropertyGroup>
1025

1126
<ItemGroup>

src/Tools.CodeOfChaos.Types/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ public static async Task Main(string[] args) {
2424
string projects = string.Join(";",
2525
"CodeOfChaos.Types",
2626
"CodeOfChaos.Types.TypedValueStore",
27-
"CodeOfChaos.Types.DataSeeder"
27+
"CodeOfChaos.Types.DataSeeder",
28+
"CodeOfChaos.Types.UnitOfWork",
29+
"CodeOfChaos.Types.UnitOfWork.Contracts"
2830
);
2931
string oneLineArgs = InputHelper.ToOneLine(args).Replace("%PROJECTS%", projects);
3032

0 commit comments

Comments
 (0)