Skip to content

Commit

Permalink
VS for Mac Multi-target support (#953)
Browse files Browse the repository at this point in the history
Should now be able to pull code, open sln, and build correctly.
  • Loading branch information
jamesmontemagno committed Oct 28, 2019
1 parent c958e3c commit a66dc40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Xamarin.Essentials/Xamarin.Essentials.csproj
Expand Up @@ -76,8 +76,10 @@
<AndroidResource Include="Resources\xml\*.xml" />
<PackageReference Include="Xamarin.Android.Support.Compat" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.CustomTabs" Version="28.0.0.3" />
<PackageReference Condition="$(TargetFrameworkVersion.TrimStart('vV')) &lt; 9.0" Include="Xamarin.Android.Support.Core.Utils" Version="28.0.0.3" />
<PackageReference Condition=" '$(OS)' == 'Windows_NT' And $(TargetFrameworkVersion.TrimStart('vV')) &lt; 9.0" Include="Xamarin.Android.Support.Core.Utils" Version="28.0.0.3" />
<PackageReference Condition=" '$(OS)' != 'Windows_NT' " Include="Xamarin.Android.Support.Core.Utils" Version="28.0.0.3" />
</ItemGroup>

<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.iOS')) ">
<Compile Include="**\*.ios.cs" />
<Compile Include="**\*.ios.*.cs" />
Expand Down
1 change: 0 additions & 1 deletion nuget.config
Expand Up @@ -10,7 +10,6 @@

<packageSources>
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
<add key="SDK Extras" value="https://www.myget.org/F/msbuildsdkextras/api/v3/index.json" />
</packageSources>

</configuration>

0 comments on commit a66dc40

Please sign in to comment.