File tree Expand file tree Collapse file tree 4 files changed +38
-1
lines changed
CodeOfChaos.Types.UnitOfWork
CodeOfChoas.Types.UnitOfWork.Contracts Expand file tree Collapse file tree 4 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 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 :
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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments