Skip to content

Commit

Permalink
Aloha fix (#32)
Browse files Browse the repository at this point in the history
* build fixes and some cleanup

* - wpf assembly name

* - fix sln
  • Loading branch information
PureWeen authored May 19, 2020
1 parent 46845b9 commit c7e2c55
Show file tree
Hide file tree
Showing 34 changed files with 42 additions and 167 deletions.
1 change: 0 additions & 1 deletion .System.Maui.Android.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"PagesGallery\\PagesGallery.Droid\\PagesGallery.Droid.csproj",
"PagesGallery\\PagesGallery\\PagesGallery.csproj",
"Stubs\\System.Maui.Platform.Android\\System.Maui.Platform.Android (Forwarders).csproj",
"XFCorePostProcessor.Tasks\\XFCorePostProcessor.Tasks.csproj",
"Xamarin.Flex\\Xamarin.Flex.shproj",
"System.Maui.Build.Tasks\\System.Maui.Build.Tasks.csproj",
"System.Maui.ControlGallery.Android\\System.Maui.ControlGallery.Android.csproj",
Expand Down
1 change: 0 additions & 1 deletion .System.Maui.UAP.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"EmbeddingTestBeds\\Embedding.XF\\Embedding.XF.csproj",
"PagesGallery\\PagesGallery.UWP\\PagesGallery.UWP.csproj",
"PagesGallery\\PagesGallery\\PagesGallery.csproj",
"XFCorePostProcessor.Tasks\\XFCorePostProcessor.Tasks.csproj",
"Xamarin.Flex\\Xamarin.Flex.shproj",
"System.Maui.Build.Tasks\\System.Maui.Build.Tasks.csproj",
"System.Maui.ControlGallery.WindowsUniversal\\System.Maui.ControlGallery.WindowsUniversal.csproj",
Expand Down
1 change: 0 additions & 1 deletion .System.Maui.iOS.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"PagesGallery\\PagesGallery.iOS\\PagesGallery.iOS.csproj",
"PagesGallery\\PagesGallery\\PagesGallery.csproj",
"Stubs\\System.Maui.Platform.iOS\\System.Maui.Platform.iOS (Forwarders).csproj",
"XFCorePostProcessor.Tasks\\XFCorePostProcessor.Tasks.csproj",
"Xamarin.Flex\\Xamarin.Flex.shproj",
"System.Maui.Build.Tasks\\System.Maui.Build.Tasks.csproj",
"System.Maui.ControlGallery.iOS\\System.Maui.ControlGallery.iOS.csproj",
Expand Down
1 change: 0 additions & 1 deletion .System.Maui.nuget.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"Stubs\\System.Maui.Platform.Android\\System.Maui.Platform.Android (Forwarders).csproj",
"Stubs\\System.Maui.Platform.Tizen\\System.Maui.Platform.Tizen (Forwarders).csproj",
"Stubs\\System.Maui.Platform.iOS\\System.Maui.Platform.iOS (Forwarders).csproj",
"XFCorePostProcessor.Tasks\\XFCorePostProcessor.Tasks.csproj",
"Xamarin.Flex\\Xamarin.Flex.shproj",
"System.Maui.Build.Tasks\\System.Maui.Build.Tasks.csproj",
"System.Maui.Core.Design\\System.Maui.Core.Design.csproj",
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Company>Microsoft</Company>
<Product>System.Maui</Product>
<LangVersion>7.3</LangVersion>
<LangVersion>8.0</LangVersion>
<ProduceReferenceAssembly Condition="'$(UsingMicrosoftNETSdk)' == 'True' AND '$(Configuration)' == 'Debug'">True</ProduceReferenceAssembly>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions DualScreen/DualScreen/TwoPanePropertiesGallery.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ protected override void OnAppearing()
TallModeConfiguration.SelectedIndex = 1;
WideModeConfiguration.SelectedIndex = 1;

DualScreen.DualScreenInfo.Current.HingeAngleChanged += OnHingeAngleChanged;
DualScreenInfo.Current.HingeAngleChanged += OnHingeAngleChanged;
}

protected override void OnDisappearing()
{
DualScreen.DualScreenInfo.Current.HingeAngleChanged -= OnHingeAngleChanged;
DualScreenInfo.Current.HingeAngleChanged -= OnHingeAngleChanged;
}

void OnHingeAngleChanged(object sender, DualScreen.HingeAngleChangedEventArgs e)
void OnHingeAngleChanged(object sender, HingeAngleChangedEventArgs e)
{
lblHingeAngle.Text = e.HingeAngleInDegrees.ToString();
}
Expand Down
14 changes: 5 additions & 9 deletions Environment.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
</PropertyGroup>





<PropertyGroup Condition="'$(CI)' == ''">
<CI>false</CI>
<CI Condition="'$(TF_BUILD)' == 'true'">true</CI>
Expand All @@ -19,25 +18,22 @@
<ANDROID_RENDERERS>LEGACY</ANDROID_RENDERERS>
-->
</PropertyGroup>

<PropertyGroup Condition="'$(CI)' == 'true'">
<_XamarinFormsVersion>$(BUILD_BUILDNUMBER.Split(`+`)[0])</_XamarinFormsVersion>
<XamarinFormsVersion Condition="Exists('$(BUILD_SOURCESDIRECTORY)/Nuget/System.Maui.$(_XamarinFormsVersion).nupkg')" >$(_XamarinFormsVersion)</XamarinFormsVersion>
</PropertyGroup>

<!-- Build from source or nugets-->
<PropertyGroup>
<XamarinFormsVersion Condition="'$(XamarinFormsVersion)' == ''"></XamarinFormsVersion>
<FromSource Condition="'$(XamarinFormsVersion)' != ''">false</FromSource>
<FromSource Condition="'$(XamarinFormsVersion)' != '' AND '$(FromSource)' == ''">false</FromSource>
<FromSource Condition="'$(FromSource)' == ''">true</FromSource>
</PropertyGroup>

<PropertyGroup>
<Use2017 Condition="'$(Use2017)' == '' AND '$(MSBuildRuntimeType)' == 'Mono'">$(FrameworkSDKRoot.Contains('/Versions/5'))</Use2017>
<Use2017 Condition="'$(Use2017)' == '' AND '$(MSBuildAssemblyVersion)' &lt; '16.0'">true</Use2017>
<Use2017 Condition="'$(Use2017)' == ''">false</Use2017>
</PropertyGroup>

<!-- This is used by the libraries -->
<PropertyGroup Condition="'$(AndroidTargetFrameworks)' == ''">
<AndroidTargetFrameworks Condition="'$(Use2017)' == 'true'">MonoAndroid90;</AndroidTargetFrameworks>
Expand All @@ -49,4 +45,4 @@
<AndroidRestoreOnBuild Condition="'$(AndroidRestoreOnBuild)' == ''">True</AndroidRestoreOnBuild>
<AcceptAndroidSDKLicenses Condition="'$(AcceptAndroidSDKLicenses)' == ''">True</AcceptAndroidSDKLicenses>
</PropertyGroup>
</Project>
</Project>
7 changes: 3 additions & 4 deletions SampleImports/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<Project>
<PropertyGroup>
<XamarinFormsSource>..\..\</XamarinFormsSource>
<FromSource Condition="'$(FromSource)' == ''">true</FromSource>
<XamarinFormsVersion>4.6.0.494-pre2</XamarinFormsVersion>
<XamarinFormsSource Condition="'$(XamarinFormsSource)' == ''">$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\'))</XamarinFormsSource>
<FromSource Condition="'$(FromSource)' == ''">true</FromSource>
<NoWarn>$(NoWarn);NU1605</NoWarn>
<SampleProject>true</SampleProject>
<SampleProject Condition="'$(SampleProject)' == ''">true</SampleProject>
</PropertyGroup>
<Import Project="..\Directory.Build.props" />
<Import Project="Netstandard.Build.props" Condition=" $(TargetFramework.StartsWith('netstandard'))" />
Expand Down
4 changes: 2 additions & 2 deletions SampleImports/Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>

<Import Project="Nuget.Build.targets" Condition="'$(XamarinFormsVersion)' != ''" />

<ItemGroup>
<PackageReference ExcludeAssets="All" Include="System.Maui" Version="$(XamarinFormsVersion)">
</PackageReference>
<ProjectReference Include="$(XamarinFormsSource)System.Maui.Core\System.Maui.Core.csproj">
<Name>System.Maui.Core</Name>
</ProjectReference>
Expand Down
4 changes: 2 additions & 2 deletions SampleImports/Netstandard.Build.props
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project>
<Import Project="..\.nuspec\System.Maui.props" />
<Import Project="..\Directory.Build.props" />
<Import Project="$(XamarinFormsSource).nuspec\System.Maui.props" />
<Import Project="$(XamarinFormsSource)Directory.Build.props" />
</Project>
8 changes: 4 additions & 4 deletions SampleImports/Netstandard.Build.targets
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project>
<Import Project="..\.nuspec\System.Maui.DefaultItems.props" />
<Import Project="..\.nuspec\System.Maui.DefaultItems.targets" />
<Import Project="$(XamarinFormsSource).nuspec\System.Maui.DefaultItems.props" />
<Import Project="$(XamarinFormsSource).nuspec\System.Maui.DefaultItems.targets" />
<PropertyGroup>
<XFDisableTargetsValidation>True</XFDisableTargetsValidation>
</PropertyGroup>

<ItemGroup>
</ItemGroup>
<Import Project="..\.nuspec\System.Maui.targets" Condition="'$(BuildingInsideVisualStudio)' == 'true' AND Exists('$(__XFBuildTasksLocation)System.Maui.Build.Tasks.dll')" />
<Import Project="..\.nuspec\System.Maui.targets" Condition="'$(BuildingInsideVisualStudio)' != 'true'" />
<Import Project="$(XamarinFormsSource).nuspec\System.Maui.targets" Condition="'$(BuildingInsideVisualStudio)' == 'true' AND Exists('$(__XFBuildTasksLocation)System.Maui.Build.Tasks.dll')" />
<Import Project="$(XamarinFormsSource).nuspec\System.Maui.targets" Condition="'$(BuildingInsideVisualStudio)' != 'true'" />

</Project>
6 changes: 6 additions & 0 deletions SampleImports/Nuget.Build.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<Project>
<ItemGroup>
<PackageReference ExcludeAssets="All" Include="System.Maui" Version="$(XamarinFormsVersion)">
</PackageReference>
</ItemGroup>
</Project>
5 changes: 0 additions & 5 deletions System.Maui.Core/System.Maui.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,4 @@
<GitInfoReportImportance>high</GitInfoReportImportance>
</PropertyGroup>
<Import Project="..\Xamarin.Flex\Xamarin.Flex.projitems" Label="Shared" Condition="Exists('..\Xamarin.Flex\Xamarin.Flex.projitems')" />
<UsingTask TaskName="XFCorePostProcessor.Tasks.FixXFCoreAssembly" AssemblyFile="..\XFCorePostProcessor.Tasks\bin\Debug\net461\XFCorePostProcessor.Tasks.dll" />
<Target Condition="$(DesignTimeBuild) != true AND $(BuildingProject) == true" AfterTargets="AfterCompile" Name="XFCorePostProcessor" Inputs="$(IntermediateOutputPath)$(TargetFileName)" Outputs="$(IntermediateOutputPath)XFCorePostProcessor.stamp">
<Touch Files="$(IntermediateOutputPath)XFCorePostProcessor.stamp" AlwaysCreate="True" />
<!--<FixXFCoreAssembly Assembly="$(IntermediateOutputPath)$(TargetFileName)" ReferencePath="@(ReferencePath)" />-->
</Target>
</Project>
22 changes: 1 addition & 21 deletions System.Maui.DualScreen.sln
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28621.142
Expand Down Expand Up @@ -46,14 +45,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Maui.Platform.GTK",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Maui.Platform.Tizen", "System.Maui.Platform.Tizen\System.Maui.Platform.Tizen.csproj", "{83790029-272E-45AF-A41D-E7716684E5B8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Maui.Platform.WPF", "System.Maui.Platform.WPF\System.Maui.Platform.WPF.csproj", "{140BC260-8B15-4D3A-B1B0-DDD8072918CC}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Maui.Platform.WPF", "System.Maui.Platform.WPF\System.Maui.Platform.WPF.csproj", "{140BC260-8B15-4D3A-B1B0-DDD8072918CC}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Maui.Platform", "System.Maui.Platform\System.Maui.Platform.csproj", "{D31A6537-ED9C-4EBD-B231-A8D4FE44126A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Maui.Core.Design", "System.Maui.Core.Design\System.Maui.Core.Design.csproj", "{98637471-8E5C-4DDE-89CA-2EAA664FB0EF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XFCorePostProcessor.Tasks", "XFCorePostProcessor.Tasks\XFCorePostProcessor.Tasks.csproj", "{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Maui.Platform.Tizen (Forwarders)", "Stubs\System.Maui.Platform.Tizen\System.Maui.Platform.Tizen (Forwarders).csproj", "{39B3457F-01D8-43D0-8E84-D8C4F73CF48E}"
ProjectSection(ProjectDependencies) = postProject
{83790029-272E-45AF-A41D-E7716684E5B8} = {83790029-272E-45AF-A41D-E7716684E5B8}
Expand Down Expand Up @@ -519,22 +516,6 @@ Global
{98637471-8E5C-4DDE-89CA-2EAA664FB0EF}.Release|x64.Build.0 = Release|Any CPU
{98637471-8E5C-4DDE-89CA-2EAA664FB0EF}.Release|x86.ActiveCfg = Release|Any CPU
{98637471-8E5C-4DDE-89CA-2EAA664FB0EF}.Release|x86.Build.0 = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|ARM.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|ARM64.Build.0 = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|x64.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|x86.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|ARM.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|ARM64.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|ARM64.Build.0 = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|iPhone.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|x64.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|x86.ActiveCfg = Release|Any CPU
{39B3457F-01D8-43D0-8E84-D8C4F73CF48E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{39B3457F-01D8-43D0-8E84-D8C4F73CF48E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{39B3457F-01D8-43D0-8E84-D8C4F73CF48E}.Debug|ARM.ActiveCfg = Debug|Any CPU
Expand Down Expand Up @@ -836,7 +817,6 @@ Global
{140BC260-8B15-4D3A-B1B0-DDD8072918CC} = {29AC50BF-B4FB-450B-9386-0C5AD4B84226}
{D31A6537-ED9C-4EBD-B231-A8D4FE44126A} = {29AC50BF-B4FB-450B-9386-0C5AD4B84226}
{98637471-8E5C-4DDE-89CA-2EAA664FB0EF} = {9AD757F5-E57A-459D-A0A7-E0675E045B84}
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D} = {9AD757F5-E57A-459D-A0A7-E0675E045B84}
{39B3457F-01D8-43D0-8E84-D8C4F73CF48E} = {5A2DADBC-9510-4DD1-BE58-01501F2DF65D}
{A204BBC8-F83B-4E43-9032-2E97899EC474} = {9AD757F5-E57A-459D-A0A7-E0675E045B84}
{A6703C7D-D362-452A-A7A5-73771194D38C} = {9AD757F5-E57A-459D-A0A7-E0675E045B84}
Expand Down
1 change: 1 addition & 0 deletions System.Maui.Platform.WPF/System.Maui.Platform.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</PropertyGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);NU1701</NoWarn>
<AssemblyName>System.Maui.Platform.WPF</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\System.Maui.Core\System.Maui.Core.csproj" />
Expand Down
14 changes: 13 additions & 1 deletion System.Maui.Xaml.UnitTests/Issues/GH2691.xaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"

x:Class="System.Maui.Xaml.UnitTests.Gh2691">
<ContentPage.Content>
<StackLayout>

</StackLayout>
</ContentPage.Content>
</ContentPage>

<!--<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:test="http://xamarin.com/schemas/2014/forms/customurl1"
Expand All @@ -23,4 +35,4 @@
</test2:CustomStackLayout>
</StackLayout>
</ContentPage.Content>
</ContentPage>
</ContentPage>-->
21 changes: 1 addition & 20 deletions System.Maui.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28621.142
VisualStudioVersion = 16.0.30104.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "System.Maui", "System.Maui", "{9AD757F5-E57A-459D-A0A7-E0675E045B84}"
EndProject
Expand Down Expand Up @@ -138,8 +137,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Maui.Core.Design", "
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Maui.Xaml.Design", "System.Maui.Xaml.Design\System.Maui.Xaml.Design.csproj", "{65BC4888-CC59-428A-9B75-540CF1C09480}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XFCorePostProcessor.Tasks", "XFCorePostProcessor.Tasks\XFCorePostProcessor.Tasks.csproj", "{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Maui.Platform.Tizen (Forwarders)", "Stubs\System.Maui.Platform.Tizen\System.Maui.Platform.Tizen (Forwarders).csproj", "{39B3457F-01D8-43D0-8E84-D8C4F73CF48E}"
ProjectSection(ProjectDependencies) = postProject
{83790029-272E-45AF-A41D-E7716684E5B8} = {83790029-272E-45AF-A41D-E7716684E5B8}
Expand Down Expand Up @@ -1344,22 +1341,6 @@ Global
{65BC4888-CC59-428A-9B75-540CF1C09480}.Release|x64.Build.0 = Release|Any CPU
{65BC4888-CC59-428A-9B75-540CF1C09480}.Release|x86.ActiveCfg = Release|Any CPU
{65BC4888-CC59-428A-9B75-540CF1C09480}.Release|x86.Build.0 = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|ARM.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|ARM64.Build.0 = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|x64.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Debug|x86.ActiveCfg = Debug|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|ARM.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|ARM64.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|ARM64.Build.0 = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|iPhone.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|x64.ActiveCfg = Release|Any CPU
{5BBF4A3F-4AD1-47FD-B250-05EA793F939D}.Release|x86.ActiveCfg = Release|Any CPU
{39B3457F-01D8-43D0-8E84-D8C4F73CF48E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{39B3457F-01D8-43D0-8E84-D8C4F73CF48E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{39B3457F-01D8-43D0-8E84-D8C4F73CF48E}.Debug|ARM.ActiveCfg = Debug|Any CPU
Expand Down
70 changes: 0 additions & 70 deletions XFCorePostProcessor.Tasks/FixXFCoreAssembly.cs

This file was deleted.

21 changes: 0 additions & 21 deletions XFCorePostProcessor.Tasks/XFCorePostProcessor.Tasks.csproj

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit c7e2c55

Please sign in to comment.