Skip to content

Commit

Permalink
Merge pull request #2 from Wallsmedia/release/3.1.0
Browse files Browse the repository at this point in the history
Release 3.1.0 supports net core app 3.1.
  • Loading branch information
AlexPaskhin committed Dec 8, 2019
2 parents 6bf374a + a868697 commit 9c6f37a
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 32 deletions.
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,24 @@ cross platform .NET IDE**

<a href="https://www.jetbrains.com/?from=XmlResult"> <img src="https://github.com/Wallsmedia/XmlResult/blob/master/Logo/resharper/logo.png?raw=true" Width="40p" /></a> **The Visual Studio Extension for .NET Developers**

# Version: 3.0.0

**.Net Core App windows Desktop support**

# Nuget.Org
- NuGet.org package http://www.nuget.org/packages/MvvmBindingPack/
- NuGet.org package http://www.nuget.org/packages/MvvmBindingPack.Debug/
- Supports: **netcoreapp30**

# Version: 3.1.0

**.Net Core App windows Desktop support**
- Supports: **netcoreapp3.1**
- Signed assembly;
**Dependences:**
- None


# Version: 3.0.0

**.Net Core App windows Desktop support**
- Supports: **netcoreapp3.0**
- Signed assembly;
**Dependences:**
- None

Expand Down
8 changes: 4 additions & 4 deletions sample/WpfMvvmBindingPack.Demo/WpfMvvmBindingPack.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk.Web" />

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<Version>3.0.0</Version>
<AssemblyVersion>3.0.0</AssemblyVersion>
<FileVersion>3.0.0</FileVersion>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>3.1.0</Version>
<AssemblyVersion>3.1.0</AssemblyVersion>
<FileVersion>3.1.0</FileVersion>
<UseWPF>true</UseWPF>
<ApplicationIcon />
<OutputType>WinExe</OutputType>
Expand Down
10 changes: 5 additions & 5 deletions src/MvvmBindingPack/MvvmBindingPack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
<Version>3.0.0</Version>
<AssemblyVersion>3.0.0</AssemblyVersion>
<FileVersion>3.0.0</FileVersion>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<Version>3.1.0</Version>
<AssemblyVersion>3.1.0</AssemblyVersion>
<FileVersion>3.1.0</FileVersion>
<UseWPF>true</UseWPF>
</PropertyGroup>

Expand All @@ -36,7 +36,7 @@
AutoWireVmDataContext - setups "DataContext".
AutoWireViewConrols - wires and binds XAML elements to View Model.
See demo examples: https://github.com/Wallsmedia/MvvmBindingPack
See How to use: https://github.com/Wallsmedia/MvvmBindingPack/blob/master/MvvmBindingPack.2.5.pdf
See How to use: https://github.com/Wallsmedia/MvvmBindingPack/blob/master/MvvmBindingPack.pdf
</Description>
<Authors>Alexander Paskhin (paskhin@hotmail.co.uk)</Authors>
<PackageReleaseNotes>
Expand Down
14 changes: 7 additions & 7 deletions src/MvvmBindingPack/Nuget.Debug.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>MvvmBindingPack.Debug</id>
<version>3.0.0</version>
<version>3.1.0</version>
<authors>Alexander Paskhin (paskhin@hotmail.co.uk)</authors>
<owners>Alexander Paskhin (paskhin@hotmail.co.uk)</owners>
<license type="file">LICENSE.txt</license>
Expand All @@ -21,7 +21,7 @@
See How to use: https://github.com/Wallsmedia/MvvmBindingPack/wiki/MvvmBindingPack-v-3.0
</summary>
<releaseNotes>
Release: netcoreapp3.0 Windows WPF Only; Signed Assembly;
Release: netcoreapp3.1 Windows WPF Only; Signed Assembly;
Breaking changes(!):
Initialize DI/IoC:
MvvmBindingPack.AutoWireViewConrols.ServiceProvider static property with “Microsoft.Extensions.DependencyInjection” ServiceProvider.
Expand All @@ -30,20 +30,20 @@
<tags>Mvvm Xaml Wpf MvvmBinding Binding</tags>

<dependencies>
<group targetFramework=".NETCoreApp3.0" />
<group targetFramework=".NETCoreApp3.1" />
</dependencies>

<frameworkReferences>
<group targetFramework=".NETCoreApp3.0">
<group targetFramework=".NETCoreApp3.1">
<frameworkReference name="Microsoft.WindowsDesktop.App.WPF" />
</group>
</frameworkReferences>

</metadata>
<files>
<file src="..\..\LICENSE.txt" target="" />
<file src="..\..\MvvmBindingPack.Bin\Debug\netcoreapp3.0\Mvvm*.dll" target="lib\netcoreapp3.0\" />
<file src="..\..\MvvmBindingPack.Bin\Debug\netcoreapp3.0\Mvvm*.xml" target="lib\netcoreapp3.0\" />
<file src="..\..\MvvmBindingPack.Bin\Debug\netcoreapp3.0\Mvvm*.pdb" target="lib\netcoreapp3.0\" />
<file src="..\..\MvvmBindingPack.Bin\Debug\netcoreapp3.1\Mvvm*.dll" target="lib\netcoreapp3.1\" />
<file src="..\..\MvvmBindingPack.Bin\Debug\netcoreapp3.1\Mvvm*.xml" target="lib\netcoreapp3.1\" />
<file src="..\..\MvvmBindingPack.Bin\Debug\netcoreapp3.1\Mvvm*.pdb" target="lib\netcoreapp3.1\" />
</files>
</package>
12 changes: 6 additions & 6 deletions src/MvvmBindingPack/Nuget.Release.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>MvvmBindingPack</id>
<version>3.0.0</version>
<version>3.1.0</version>
<authors>Alexander Paskhin (paskhin@hotmail.co.uk)</authors>
<owners>Alexander Paskhin (paskhin@hotmail.co.uk)</owners>
<license type="file">LICENSE.txt</license>
Expand All @@ -21,7 +21,7 @@
See How to use: https://github.com/Wallsmedia/MvvmBindingPack/wiki/MvvmBindingPack-v-3.0
</summary>
<releaseNotes>
Release: netcoreapp3.0 Windows WPF Only; Signed Assembly;
Release: netcoreapp3.1 Windows WPF Only; Signed Assembly;
Breaking changes(!):
Initialize DI/IoC:
MvvmBindingPack.AutoWireViewConrols.ServiceProvider static property with “Microsoft.Extensions.DependencyInjection” ServiceProvider.
Expand All @@ -30,19 +30,19 @@
<tags>Mvvm Xaml Wpf MvvmBinding Binding</tags>

<dependencies>
<group targetFramework=".NETCoreApp3.0" />
<group targetFramework=".NETCoreApp3.1" />
</dependencies>

<frameworkReferences>
<group targetFramework=".NETCoreApp3.0">
<group targetFramework=".NETCoreApp3.1">
<frameworkReference name="Microsoft.WindowsDesktop.App.WPF" />
</group>
</frameworkReferences>

</metadata>
<files>
<file src="..\..\LICENSE.txt" target="" />
<file src="..\..\MvvmBindingPack.Bin\Release\netcoreapp3.0\Mvvm*.dll" target="lib\netcoreapp3.0\" />
<file src="..\..\MvvmBindingPack.Bin\Release\netcoreapp3.0\Mvvm*.xml" target="lib\netcoreapp3.0\" />
<file src="..\..\MvvmBindingPack.Bin\Release\netcoreapp3.1\Mvvm*.dll" target="lib\netcoreapp3.1\" />
<file src="..\..\MvvmBindingPack.Bin\Release\netcoreapp3.1\Mvvm*.xml" target="lib\netcoreapp3.1\" />
</files>
</package>
13 changes: 8 additions & 5 deletions test/UnitTestMvvmBindingPack/UnitTestMvvmBindingPack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk.Web" />

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="coverlet.collector" Version="1.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
<PackageReference Include="coverlet.collector" Version="1.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 9c6f37a

Please sign in to comment.