Skip to content

Commit

Permalink
Use Qowaiv v7.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Corniel committed Jun 29, 2024
1 parent e428872 commit 0ab38af
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ partial class OpenApiTypeResolver
["DATETIME"] = typeof(System.DateTime),
["DATEWEEKBASED"] = typeof(Qowaiv.WeekDate),
["EMAIL"] = typeof(Qowaiv.EmailAddress),
["EMAILCOLLECTION"] = typeof(Qowaiv.EmailAddressCollection),
["ENERGYLABEL"] = typeof(Qowaiv.Sustainability.EnergyLabel),
["FRACTION"] = typeof(Qowaiv.Mathematics.Fraction),
["GUID"] = typeof(System.Guid),
Expand All @@ -31,6 +30,6 @@ partial class OpenApiTypeResolver
["STREAMSIZE"] = typeof(Qowaiv.IO.StreamSize),
["URI"] = typeof(System.Uri),
["UUIDBASE64"] = typeof(Qowaiv.Uuid),
["YESNO"] = typeof(Qowaiv.YesNo)
["YESNO"] = typeof(Qowaiv.YesNo),
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>0.0.1-alpha-014</Version>
<Version>0.0.1-alpha-015</Version>
<PackageId>Qowaiv.CodeGeneration.OpenApi</PackageId>
<PackageReleaseNotes>
ToBeReleased
Expand All @@ -21,8 +21,9 @@ ToBeReleased
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.OpenApi" Version="1.6.13" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.13" />
<PackageReference Include="Microsoft.OpenApi" Version="1.6.15" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.15" />
<PackageReference Include="Qowaiv.Diagnostics.Contracts" Version="1.0.0" PrivateAssets="all" />
<PackageReference Include="Qowaiv.Validation.Abstractions" Version="0.3.0" />
<PackageReference Include="System.Memory.Data" Version="8.0.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
<EmbeddedResource Include="Snippets\*.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Qowaiv.Diagnostics.Contracts" Version="1.0.0" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Qowaiv.CodeGeneration\Qowaiv.CodeGeneration.csproj" />
</ItemGroup>
Expand Down
7 changes: 4 additions & 3 deletions src/Qowaiv.CodeGeneration/Qowaiv.CodeGeneration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>0.0.1-alpha-014</Version>
<Version>0.0.1-alpha-015</Version>
<PackageId>Qowaiv.CodeGeneration</PackageId>
<PackageReleaseNotes>
ToBeReleased
Expand All @@ -23,8 +23,9 @@ ToBeReleased

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.*" />
<PackageReference Include="Qowaiv" Version="6.*" />
<PackageReference Include="Qowaiv.Validation.DataAnnotations" Version="1.*" />
<PackageReference Include="Qowaiv" Version="7.0.0" />
<PackageReference Include="Qowaiv.Diagnostics.Contracts" Version="1.0.0" PrivateAssets="all" />
<PackageReference Include="Qowaiv.Validation.DataAnnotations" Version="2.0.0" />
</ItemGroup>

</Project>

0 comments on commit 0ab38af

Please sign in to comment.