Compare commits

...

7 Commits

Author SHA1 Message Date
7d2ee5809b Revert "Merge branch 'main' into main"
This reverts commit 03c0c60fd7, reversing
changes made to 77fe2e4d48.
2026-03-24 01:10:10 +02:00
7af0ee5bd6 ⬆️ Updates GitVersion.MsBuild to version 6.7.0 2026-03-24 01:05:08 +02:00
fd614be89c Adds condition to PackageReference for Microsoft.AspNetCore.OpenApi 2026-03-24 01:00:37 +02:00
03c0c60fd7 Merge branch 'main' into main
Signed-off-by: Alexandros Kritikos <akritikos@outlook.com>
2026-03-22 15:15:50 +02:00
Dimitris Tsapetis
3d39000ad0 Update Directory.Build.props
Signed-off-by: Dimitris Tsapetis <dimtsap@hotmail.com>
2026-03-01 14:13:27 +01:00
Dimitris Tsapetis
26c6fd3517 Update project namespace and company information
Signed-off-by: Dimitris Tsapetis <dimtsap@hotmail.com>
2026-03-01 14:07:09 +01:00
def7541ca1 Update remote repository URL in README
Signed-off-by: Alexandros Kritikos <akritikos@outlook.com>
2026-03-01 13:52:17 +02:00
2 changed files with 10 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
</ItemGroup>
<ItemGroup
Condition="@(PackageReference->WithMetadataValue('Identity','Microsoft.AspNetCore.OpenApi')->Count()) &gt; 0">
Condition="'$(UsingMicrosoftNETSdkWeb)' == 'True' AND @(PackageReference->WithMetadataValue('Identity','Microsoft.AspNetCore.OpenApi')->Count()) &gt; 0">
<PackageReference Include="Microsoft.Extensions.ApiDescription.Server">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@@ -33,6 +33,14 @@
Condition="Exists('$(OpenApiDocumentsDirectory)/$(MSBuildProjectName).json')" />
</Target>
<Target Name="SetHierarchicalPackageOutputPath"
BeforeTargets="_GetAbsoluteOutputPathsForPack"
Condition="'$(ArtifactsPath)' != '' AND '$(PackageVersion)' != ''">
<PropertyGroup>
<PackageOutputPath>$(ArtifactsPath)/nuget/$(PackageId)/$(PackageVersion)</PackageOutputPath>
</PropertyGroup>
</Target>
<Target Name="AddInternalsVisibleTo" BeforeTargets="BeforeCompile">
<!--
Add an ItemGroup with tags in the following format:

View File

@@ -1,6 +1,6 @@
<Project>
<ItemGroup Label="Packages">
<PackageVersion Include="GitVersion.MsBuild" Version="6.6.2" />
<PackageVersion Include="GitVersion.MsBuild" Version="6.7.0" />
<PackageVersion Include="Microsoft.Sbom.Targets" Version="4.1.5" />
<PackageVersion Include="NewStyleCop.Analyzers" Version="1.2.1" />
<PackageVersion Include="NSubstitute.Analyzers.CSharp" Version="1.0.17" />