Closed ExVeGi closed 6 years ago
@ExVeGi what no do you mean with unsupported? Which version?
The alpha version, it's not a full release, will tinylittlemvvm support it after full release or even while in alpha?
@ExVeGi Which alpha?
@punker76 NuGet unstable version - 1.6.0-alpha0184
@thoemmi It really doesn't work with v1.6 (pre-release), caused by these lines in csproj
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\MahApps.Metro.1.3.0\lib\net45\System.Windows.Interactivity.dll</HintPath>
<Private>True</Private>
</Reference>
This could be solved e.g. with the paket manager which doesn't add the version informations...
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And $(TargetFrameworkVersion) == 'v4.5'">
<ItemGroup>
<Reference Include="MahApps.Metro">
<HintPath>..\packages\MahApps.Metro\lib\net45\MahApps.Metro.dll</HintPath>
<Private>True</Private>
<Paket>True</Paket>
</Reference>
</ItemGroup>
</When>
@punker76 I've fixed it for myself, thanks. @thoemmi it would be useful if it was implemented in the nuget package.
IIRC another issue is that TinyLittleMvvm is currently built for MahApps.Metro 1.3, which is strong-named, but starting with 1.6 MahApps.Metro isn't strong-named anymore. Anyway, this week I'm busy, so I hope to address this issue next weekend. Nevertheless, there will be new release of TinyLittleMvvm once MahApps.Metro 1.6 is released.
Just a reminder, don't forget about Autofac 4.6.2, it is out.
I have uploaded a new unstable release, see https://www.nuget.org/packages/TinyLittleMvvm/0.6.0-unstable0003 (it's in NuGet's queue for validation at the moment).
I also used the opportunity for some housekeeping, i.e. I cleaned up the build process and updated the projects to the new csproj SDK format, see 640be8f2b03ac84260c75c466f9a566367df47e5.
Thanks to @Kamdzy for his contribution!
@ExVeGi Could you please check if the new package works?
Tested, confirmed working. Thank you.
Hello, MahApps 1.6.0.0 is unsupported, will it be updated?