Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
goswinr committed Nov 19, 2024
1 parent e290a9e commit 10ebd9d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.17.0] - 2024-11-10
## [0.17.0] - 2024-11-19
### Added
- Documentation via [FSharp.Formatting](https://fsprojects.github.io/FSharp.Formatting/)
- Github Actions for CI/CD
Expand Down
16 changes: 9 additions & 7 deletions Src/AvalonLog.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<TargetFrameworks>net472;net7.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>preview</LangVersion>

<NeutralLanguage>en</NeutralLanguage>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> <!--to only have the english resources-->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -15,12 +16,15 @@
<Title>AvalonLog</Title>
<Product>AvalonLog</Product>
<PackageId>AvalonLog</PackageId>

<!-- <Version>0.16.0</Version> done by Ionide.KeepAChangelog.Tasks
<AssemblyVersion>0.16.0</AssemblyVersion>
<FileVersion>0.16.0</FileVersion>
<PackageReleaseNotes></PackageReleaseNotes> -->

<Authors>GoswinR</Authors>
<Copyright>Goswin Rothenthal 2021</Copyright>

<PackageDescription>A fast and thread-safe WPF text viewer for colored text. Including F# printf formatting. Based on AvalonEdit</PackageDescription>
<Description>A fast and thread-safe WPF text viewer for colored text. Including F# printf formatting. Based on AvalonEdit</Description>

Expand All @@ -31,7 +35,7 @@
</PropertyGroup>

<PropertyGroup>
<PackageTags>WPF Text Console F# AvalonEdit</PackageTags>
<PackageTags>wpf;console;fsharp;avalonedit</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<!-- <SymbolPackageFormat>snupkg</SymbolPackageFormat> -->
Expand All @@ -53,20 +57,18 @@
<FsDocsWarnOnMissingDocs>true</FsDocsWarnOnMissingDocs>
<ChangelogFile>../CHANGELOG.md</ChangelogFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AvalonEditB" Version="2.4.0" />
<!-- <PackageReference Update="FSharp.Core" Version="6.0.7" /> -->
<!-- default lower version-->
<PackageReference Update="FSharp.Core" Version="9.0.100" />
<!-- needs to be aligned with Fesh.Revit -->
<PackageReference Update="FSharp.Core" Version="9.0.100" /> <!-- needs to be aligned with Fesh.Revit -->
<PackageReference Include="Ionide.KeepAChangelog.Tasks" Version="0.1.8" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
<!-- https://docs.microsoft.com/en-us/nuget/consume-packages/package-references-in-project-files#controlling-dependency-assets -->
</ItemGroup>

<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="" />
<None Include="../Docs/img/logo128.png" Pack="true" PackagePath="" />
<!--PackagePath = "" makes the file available to nuget pack tool-->
<None Include="../Docs/img/logo128.png" Pack="true" PackagePath="" /> <!--PackagePath = "" makes the file available to nuget pack tool-->
<Compile Include="Sync.fs" />
<Compile Include="Brush.fs" />
<Compile Include="Util.fs" />
Expand Down

0 comments on commit 10ebd9d

Please sign in to comment.