Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
<PropertyGroup>
<!-- Visible version -->
<Version>2.0.$(HoursSinceYearStart)</Version>

<PackageVersion>2.0.$(HoursSinceYearStart)</PackageVersion>
<AssemblyVersion>2.0.$(HoursSinceYearStart).1</AssemblyVersion>
<FileVersion>2.0.1.$(HoursSinceYearStart)</FileVersion>
<PackOutputFolder>\$(ProjectName)\bin\Debug</PackOutputFolder>
<PackOutputFolder>$(ProjectName)\bin\Release</PackOutputFolder>
<PackRelease>True</PackRelease>
</PropertyGroup>


Expand All @@ -41,6 +42,9 @@
<Message Text="build output copied to @(ReleaseCopyOutputPath)" Importance="High" />
</Target>




<Target Name="ReleasePackageToNuGet" AfterTargets="Pack" Condition="'$(Configuration)' == 'Release'">
<!-- <Exec Command="dotnet nuget push $(PackOutputFolder)\*.nupkg -source nuget.org" /> -->

Expand Down
1 change: 1 addition & 0 deletions src/MarkdownViewer.Wpf/MarkdownViewer.Wpf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<Copyright>Kyle L. Crowder © 2026</Copyright>
<PackageIcon>app-icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>

<PackageReleaseNotes>See the GitHub repository for release notes.</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>

Expand Down
3 changes: 3 additions & 0 deletions webroot/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<html>
<h2>Welcome to the Webroot!</h2>
</html>
Loading