Skip to content

Commit 7d37932

Browse files
committed
Bump version info for 1.6-pre release
1 parent d3a3733 commit 7d37932

7 files changed

Lines changed: 29 additions & 16 deletions

File tree

build.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2626

2727
<PropertyGroup>
28-
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
28+
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
2929
<TrackFileAccess>false</TrackFileAccess>
3030
</PropertyGroup>
3131

src/FormsPlayer.Android/FormsPlayer.Android.csproj

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,22 @@
4848
<ErrorReport>prompt</ErrorReport>
4949
<WarningLevel>4</WarningLevel>
5050
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
51-
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
51+
<AndroidLinkMode>None</AndroidLinkMode>
52+
<AndroidLinkSkip />
53+
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
54+
<BundleAssemblies>False</BundleAssemblies>
55+
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
56+
<AndroidSupportedAbis>armeabi,armeabi-v7a,x86</AndroidSupportedAbis>
57+
<AndroidStoreUncompressedFileExtensions />
58+
<MandroidI18n />
59+
<Debugger>Xamarin</Debugger>
60+
<AotAssemblies>False</AotAssemblies>
61+
<EnableLLVM>False</EnableLLVM>
62+
<AndroidEnableMultiDex>False</AndroidEnableMultiDex>
63+
<EnableProguard>False</EnableProguard>
64+
<DevInstrumentationEnabled>False</DevInstrumentationEnabled>
5265
</PropertyGroup>
53-
<Import Project="..\Xamarin.Forms.Player.props"/>
66+
<Import Project="..\Xamarin.Forms.Player.props" />
5467
<ItemGroup>
5568
<Reference Include="FormsViewGroup, Version=1.4.0.0, Culture=neutral, processorArchitecture=MSIL">
5669
<SpecificVersion>False</SpecificVersion>
@@ -143,7 +156,7 @@
143156
</ProjectReference>
144157
</ItemGroup>
145158
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
146-
<Import Project="..\Xamarin.Forms.Player.targets"/>
159+
<Import Project="..\Xamarin.Forms.Player.targets" />
147160
<Import Project="..\packages\Xamarin.Forms.1.4.3.6358-pre2\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.1.4.3.6358-pre2\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" />
148161
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
149162
<PropertyGroup>
@@ -158,11 +171,4 @@
158171
<Error Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
159172
</Target>
160173
<Import Project="..\packages\GitInfo.1.0.33-pre\build\GitInfo.targets" Condition="Exists('..\packages\GitInfo.1.0.33-pre\build\GitInfo.targets')" />
161-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
162-
Other similar extension points exist, see Microsoft.Common.targets.
163-
<Target Name="BeforeBuild">
164-
</Target>
165-
<Target Name="AfterBuild">
166-
</Target>
167-
-->
168174
</Project>

src/FormsPlayer.Vsix/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<DisplayName>Xamarin Forms Player</DisplayName>
66
<Description>Preview Xamarin.Forms XAML on devices and simulators, with support for data-binding via JSON dummy view models.</Description>
77
<Icon>Resources\Preview.png</Icon>
8-
<Tags>xamarin</Tags>
8+
<Tags>XAML, xamarin, xamarin.forms</Tags>
99
</Metadata>
1010
<Installation InstalledByMsi="false">
1111
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="11.0" />

src/FormsPlayer.Web/Properties/AssemblyInfo.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,11 @@
33
using System.Runtime.InteropServices;
44
using Microsoft.Owin;
55

6-
[assembly: OwinStartup(typeof(Xamarin.Forms.Player.Startup))]
6+
[assembly: OwinStartup(typeof(Xamarin.Forms.Player.Startup))]
7+
8+
namespace Xamarin.Forms.Player
9+
{
10+
public partial class ThisAssembly
11+
{
12+
}
13+
}

src/GitInfo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.1.6
1+
v0.1.6-pre

src/GlobalAssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
namespace Xamarin.Forms.Player
2727
{
28-
public partial class ThisAssembly
28+
partial class ThisAssembly
2929
{
3030
public const string Version = ThisAssembly.Git.BaseVersion.Major + "." + ThisAssembly.Git.BaseVersion.Minor + "." + ThisAssembly.Git.BaseVersion.Patch + "." + ThisAssembly.Git.Commits;
3131
public const string FileVersion = Version;

src/Xamarin.Forms.Player.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>Xamarin.Forms.Player</id>
5-
<version>0.1.5-pre</version>
5+
<version>0.1.6-pre</version>
66
<authors>Daniel Cazzulino</authors>
77
<owners>Daniel Cazzulino</owners>
88
<licenseUrl>http://www.mobileessentials.org/license</licenseUrl>

0 commit comments

Comments
 (0)