Skip to content

Commit

Permalink
Merge pull request #10 from ChrisPulman/UpdateReadme
Browse files Browse the repository at this point in the history
Update Readme, add Net 8.0, update sln
  • Loading branch information
ChrisPulman committed Jan 4, 2024
2 parents ec364f1 + d2968fb commit 91b8f71
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
1 change: 0 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<Nullable>enable</Nullable>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Configurations>Debug;Release;PreRelease</Configurations>
<PackageReleaseNotes>Compatability with Net 6/7/8 and net462</PackageReleaseNotes>
<PackageTags>Localisation;WPF;UserControl;net</PackageTags>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Localisation.WPF
Localisation library for WPF - use with ResxManager

![Nuget](https://img.shields.io/nuget/dt/Localisation.WPF?color=pink&style=plastic)
[![NuGet](https://img.shields.io/nuget/v/Localisation.WPF.svg?style=plastic)](https://www.nuget.org/packages/Localisation.WPF)

## Usage

### 1. Create a new WPF project
Expand Down
2 changes: 1 addition & 1 deletion Version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "0.5",
"version": "0.5.1",
"publicReleaseRefSpec": [
"^refs/heads/master$",
"^refs/heads/main$"
Expand Down
5 changes: 0 additions & 5 deletions src/Localisation.WPF.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,15 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
PreRelease|Any CPU = PreRelease|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{19A0AD08-1626-4472-89EA-634D7DF2BAAD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{19A0AD08-1626-4472-89EA-634D7DF2BAAD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{19A0AD08-1626-4472-89EA-634D7DF2BAAD}.PreRelease|Any CPU.ActiveCfg = PreRelease|Any CPU
{19A0AD08-1626-4472-89EA-634D7DF2BAAD}.PreRelease|Any CPU.Build.0 = PreRelease|Any CPU
{19A0AD08-1626-4472-89EA-634D7DF2BAAD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{19A0AD08-1626-4472-89EA-634D7DF2BAAD}.Release|Any CPU.Build.0 = Release|Any CPU
{83726EEB-D45E-468B-A6E1-84A35F6DD788}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{83726EEB-D45E-468B-A6E1-84A35F6DD788}.Debug|Any CPU.Build.0 = Debug|Any CPU
{83726EEB-D45E-468B-A6E1-84A35F6DD788}.PreRelease|Any CPU.ActiveCfg = PreRelease|Any CPU
{83726EEB-D45E-468B-A6E1-84A35F6DD788}.PreRelease|Any CPU.Build.0 = PreRelease|Any CPU
{83726EEB-D45E-468B-A6E1-84A35F6DD788}.Release|Any CPU.ActiveCfg = Release|Any CPU
{83726EEB-D45E-468B-A6E1-84A35F6DD788}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
Expand Down
4 changes: 2 additions & 2 deletions src/Localisation.WPF/Localisation.WPF.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net462;net6.0-windows;net7.0-windows</TargetFrameworks>
<TargetFrameworks>net462;net6.0-windows;net7.0-windows;net8.0-windows</TargetFrameworks>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
Expand All @@ -11,7 +11,7 @@
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="7.*" />
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="System.Reactive" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 91b8f71

Please sign in to comment.