Skip to content

Commit

Permalink
Disable UseDotNetNativeToolchain for UWP Demo on Release
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmanuelthiel committed Jul 25, 2018
1 parent 95f85e6 commit 8ff51ab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Flex.Demo.UWP/Flex.Demo.UWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
<UseDotNetNativeToolchain>false</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<DebugSymbols>true</DebugSymbols>
Expand Down
12 changes: 8 additions & 4 deletions Nuget/Forms.Controls.FlexButton.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 minClientVersion="">
<id>Forms.Controls.FlexButton</id>
<version>0.7.0</version>
<version>0.8.0</version>
<title>FlexButton for Xamarin.Forms</title>
<authors>Robin-Manuel Thiel</authors>
<owners>Robin-Manuel Thiel</owners>
Expand All @@ -12,7 +12,7 @@
<iconUrl>https://raw.githubusercontent.com/robinmanuelthiel/flexbutton/master/Design/Logo-150.png</iconUrl>
<description>Flexible button control for Xamarin.Forms</description>
<summary>Flexible button control for Xamarin.Forms</summary>
<releaseNotes>Support Xamarin.Forms 3.0 and .NET Standard 2.0. Please make sure, to upgrade your .NET Standard projects to 2.0 as well.</releaseNotes>
<releaseNotes>Add UWP support and update to Xamarin.Forms 3.1</releaseNotes>
<copyright></copyright>
<language></language>
<tags>flex xamarin.forms control button flexbutton xamarin flexible</tags>
Expand All @@ -30,7 +30,7 @@
</group>-->

<group>
<dependency id="Xamarin.Forms" version="3.0.0.482510" />
<dependency id="Xamarin.Forms" version="3.1.0.637273" />
</group>
</dependencies>
</metadata>
Expand All @@ -43,10 +43,14 @@

<!-- Xamarin.iOS -->
<file src="../Flex.iOS/bin/Release/Flex.dll" target="lib/xamarinios10" />
<file src="../Flex.iOS/bin/Release/Flex.iOS.dll" target="lib/xamarinios10" />
<file src="../Flex.iOS/bin/Release/Flex.iOS.dll" target="lib/xamarinios10" />

<!-- Xamarin.Android -->
<file src="../Flex.Android/bin/Release/Flex.dll" target="lib/monoandroid10" />
<file src="../Flex.Android/bin/Release/Flex.Android.dll" target="lib/monoandroid10" />

<!-- Xamarin.UWP -->
<file src="../Flex.UWP/bin/Release/Flex.dll" target="lib/uap10.0" />
<file src="../Flex.UWP/bin/Release/Flex.UWP.dll" target="lib/uap10.0" />
</files>
</package>

0 comments on commit 8ff51ab

Please sign in to comment.