Skip to content

Commit 6a43584

Browse files
committed
VersionBump : v0.13.0
1 parent abef505 commit 6a43584

File tree

9 files changed

+70
-70
lines changed

9 files changed

+70
-70
lines changed

CodeOfChaos.Types.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeOfChaos.Types.UnitOfWor
2626
EndProject
2727
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests.CodeOfChaos.Types.UnitOfWork", "tests\Tests.CodeOfChaos.Types.UnitOfWork\Tests.CodeOfChaos.Types.UnitOfWork.csproj", "{58C5DC7B-083F-42B0-AE5E-A7F662C0EF39}"
2828
EndProject
29-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeOfChoas.Types.UnitOfWork.Contracts", "src\CodeOfChoas.Types.UnitOfWork.Contracts\CodeOfChoas.Types.UnitOfWork.Contracts.csproj", "{9B998187-74B9-4B75-83DD-76CF822BAFB3}"
29+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CodeOfChaos.Types.UnitOfWork.Contracts", "src\CodeOfChaos.Types.UnitOfWork.Contracts\CodeOfChaos.Types.UnitOfWork.Contracts.csproj", "{9B998187-74B9-4B75-83DD-76CF822BAFB3}"
3030
EndProject
3131
Global
3232
GlobalSection(SolutionConfigurationPlatforms) = preSolution

src/CodeOfChaos.Types.DataSeeder/CodeOfChaos.Types.DataSeeder.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- Main package name -->
1010
<PackageId>CodeOfChaos.Types.DataSeeder</PackageId>
11-
<Version>0.11.0</Version>
11+
<Version>0.13.0</Version>
1212
<Authors>Anna Sas</Authors>
1313
<Description>A small library housing DataSeeder typings</Description>
1414
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>

src/CodeOfChaos.Types.TypedValueStore/CodeOfChaos.Types.TypedValueStore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- Main package name -->
1010
<PackageId>CodeOfChaos.Types.TypedValueStore</PackageId>
11-
<Version>0.11.0</Version>
11+
<Version>0.13.0</Version>
1212
<Authors>Anna Sas</Authors>
1313
<Description>A small library housing TypedValueStore typings</Description>
1414
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
8-
<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>
24-
</PropertyGroup>
25-
26-
<ItemGroup>
27-
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.32.0" />
28-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />
29-
</ItemGroup>
30-
31-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
8+
<RootNamespace>CodeOfChaos.Types.UnitOfWork</RootNamespace>
9+
10+
<!-- Main package name -->
11+
<PackageId>CodeOfChaos.Types.UnitOfWork.Contracts</PackageId>
12+
<Version>0.13.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>
24+
</PropertyGroup>
25+
26+
<ItemGroup>
27+
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.32.0" />
28+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />
29+
</ItemGroup>
30+
31+
</Project>
Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<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-
23-
</PropertyGroup>
24-
25-
<ItemGroup>
26-
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.32.0" />
27-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />
28-
</ItemGroup>
29-
30-
<ItemGroup>
31-
<ProjectReference Include="..\CodeOfChaos.Types\CodeOfChaos.Types.csproj" />
32-
<ProjectReference Include="..\CodeOfChoas.Types.UnitOfWork.Contracts\CodeOfChoas.Types.UnitOfWork.Contracts.csproj" />
33-
</ItemGroup>
34-
35-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
8+
<!-- Main package name -->
9+
<PackageId>CodeOfChaos.Types.UnitOfWork</PackageId>
10+
<Version>0.13.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+
23+
</PropertyGroup>
24+
25+
<ItemGroup>
26+
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.32.0" />
27+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />
28+
</ItemGroup>
29+
30+
<ItemGroup>
31+
<ProjectReference Include="..\CodeOfChaos.Types\CodeOfChaos.Types.csproj" />
32+
<ProjectReference Include="..\CodeOfChaos.Types.UnitOfWork.Contracts\CodeOfChaos.Types.UnitOfWork.Contracts.csproj" />
33+
</ItemGroup>
34+
35+
</Project>

src/CodeOfChaos.Types/CodeOfChaos.Types.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- Main package name -->
1010
<PackageId>CodeOfChaos.Types</PackageId>
11-
<Version>0.11.0</Version>
11+
<Version>0.13.0</Version>
1212
<Authors>Anna Sas</Authors>
1313
<Description>A library of common types and classes within the CodeOfChaos project</Description>
1414
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>

0 commit comments

Comments
 (0)