Skip to content

Commit

Permalink
Publish task bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
AraHaan committed Oct 7, 2023
1 parent e7ee160 commit 2cbba12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Elskom.NetFX.Sdk.Web/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoPackageAnalysis>true</NoPackageAnalysis>
<PackageTags>Web</PackageTags>
<Description>Elskom SDK for development of Web projects. This helps simplify the setup of .NET Framework Web projects that use the .NET SDK and fixes a few issues from doing so This results in identical publish outputs with the Non-SDK style versions of the same projects.</Description>
<PackageReleaseNotes>Initial Release.</PackageReleaseNotes>
<PackageReleaseNotes>Fixed issue where publish task could run on non-web projects when the SDK is used on backend projects.</PackageReleaseNotes>
</PropertyGroup>

</Project>
2 changes: 1 addition & 1 deletion Sdk/Sdk.targets
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<!-- This target contains a hack that temporarily fixes https://github.com/aspnet/RoslynCodeDomProvider/pull/155 until it gets merged. -->
<Target Name="FixPublish" AfterTargets="Publish">
<Target Name="FixPublish" AfterTargets="Publish" Condition="'$(UsingMicrosoftNETSdkWeb)' != ''">
<!-- When the Microsoft.CodeDom.Providers.DotNetCompilerPlatform merges these 2 pull requests remove this from the task. -->
<Message Text="This task temporarily fixes https://github.com/aspnet/RoslynCodeDomProvider/pull/155 until it gets merged." Importance="high" />
<Message Text="Go vote up that pull request to convince the maintainers to merge it and https://github.com/aspnet/RoslynCodeDomProvider/pull/157." Importance="high" />
Expand Down

0 comments on commit 2cbba12

Please sign in to comment.