Skip to content

Commit d747500

Browse files
authored
Merge pull request #125 from janusw/nuspec
Restore and update nuspec file for OxyPlot.Xamarin.Forms
2 parents 75ffeb1 + 2702862 commit d747500

File tree

8 files changed

+214
-42
lines changed

8 files changed

+214
-42
lines changed

Diff for: .github/workflows/dotnet.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: ci/github-actions
2+
3+
on:
4+
push:
5+
branches: [ '**' ]
6+
pull_request:
7+
branches: [ '**' ]
8+
# Allows you to run this workflow manually from the Actions tab
9+
workflow_dispatch:
10+
11+
jobs:
12+
build:
13+
runs-on: windows-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
with:
17+
fetch-depth: 0
18+
- uses: nuget/setup-nuget@v1
19+
- name: Setup .NET
20+
uses: actions/setup-dotnet@v3
21+
with:
22+
dotnet-version: 6.0.x
23+
- name: Add msbuild to PATH
24+
uses: microsoft/setup-msbuild@v1.1
25+
- name: Restore
26+
run: nuget restore Source/OxyPlot.Xamarin.Forms.sln
27+
- name: Build
28+
run: msbuild Source/OxyPlot.Xamarin.Forms.sln -p:RestorePackages=false -p:Configuration=Release
29+
- name: Package
30+
run: nuget pack Source/OxyPlot.Xamarin.Forms/OxyPlot.Xamarin.Forms.nuspec -outputdirectory Artifacts
31+
# -Version $(git describe)
32+
- name: Upload packages
33+
uses: actions/upload-artifact@v3
34+
with:
35+
name: nupkg
36+
path: Artifacts/*.nupkg

Diff for: Source/Examples/Xamarin.Forms/SimpleDemo/SimpleDemo.MacOS/SimpleDemo.MacOS.csproj

+9-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,14 @@
5151
<ItemGroup>
5252
<Reference Include="System" />
5353
<Reference Include="System.Core" />
54-
<Reference Include="Xamarin.Mac" />
54+
</ItemGroup>
55+
<ItemGroup Condition="'$(OS)' != 'Windows_NT'">
56+
<Reference Include="Xamarin.Mac"/>
57+
</ItemGroup>
58+
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
59+
<Reference Include="Xamarin.Mac">
60+
<HintPath>$(MSBuildExtensionsPath)\..\Common7\IDE\Extensions\Xamarin.VisualStudio\Xamarin.Mac.dll</HintPath>
61+
</Reference>
5562
</ItemGroup>
5663
<ItemGroup>
5764
<PackageReference Include="Xamarin.Essentials" Version="1.3.1" />
@@ -97,4 +104,4 @@
97104
</ProjectReference>
98105
</ItemGroup>
99106
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" />
100-
</Project>
107+
</Project>

Diff for: Source/OxyPlot.Xamarin.Forms.Platform.MacOS/OxyPlot.Xamarin.Forms.Platform.MacOS.csproj

+9-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,14 @@
5959
<ItemGroup>
6060
<Reference Include="System" />
6161
<Reference Include="System.Core" />
62-
<Reference Include="Xamarin.Mac" />
62+
</ItemGroup>
63+
<ItemGroup Condition="'$(OS)' != 'Windows_NT'">
64+
<Reference Include="Xamarin.Mac"/>
65+
</ItemGroup>
66+
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
67+
<Reference Include="Xamarin.Mac">
68+
<HintPath>$(MSBuildExtensionsPath)\..\Common7\IDE\Extensions\Xamarin.VisualStudio\Xamarin.Mac.dll</HintPath>
69+
</Reference>
6370
</ItemGroup>
6471
<ItemGroup>
6572
<PackageReference Include="OxyPlot.Core" Version="2.0.0" />
@@ -91,4 +98,4 @@
9198
<None Include="packages.config" />
9299
</ItemGroup>
93100
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" />
94-
</Project>
101+
</Project>

Diff for: Source/OxyPlot.Xamarin.Forms.Platform.UWP/OxyPlot.Xamarin.Forms.Platform.UWP.csproj

+23-13
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
<AssemblyName>OxyPlot.Xamarin.Forms.Platform.UWP</AssemblyName>
1212
<DefaultLanguage>en-US</DefaultLanguage>
1313
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
14-
<TargetPlatformVersion>10.0.10586.0</TargetPlatformVersion>
15-
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
14+
<TargetPlatformVersion>10.0.17763.0</TargetPlatformVersion>
15+
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
1616
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
1717
<FileAlignment>512</FileAlignment>
1818
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
19+
<RuntimeIdentifiers>win10-arm;win10-arm-aot;win10-x86;win10-x86-aot;win10-x64;win10-x64-aot</RuntimeIdentifiers>
1920
</PropertyGroup>
2021
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2122
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -31,11 +32,10 @@
3132
<PlatformTarget>AnyCPU</PlatformTarget>
3233
<DebugType>pdbonly</DebugType>
3334
<Optimize>true</Optimize>
34-
<OutputPath>..\..\Output\Xamarin.Forms.Platform.UWP\</OutputPath>
35+
<OutputPath>bin\Release\</OutputPath>
3536
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
3637
<ErrorReport>prompt</ErrorReport>
3738
<WarningLevel>4</WarningLevel>
38-
<DocumentationFile>..\..\Output\Xamarin.Forms.Platform.UWP\OxyPlot.Xamarin.Forms.Platform.UWP.XML</DocumentationFile>
3939
</PropertyGroup>
4040
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
4141
<PlatformTarget>x86</PlatformTarget>
@@ -50,7 +50,7 @@
5050
</PropertyGroup>
5151
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
5252
<PlatformTarget>x86</PlatformTarget>
53-
<OutputPath>..\..\Output\Xamarin.Forms.Platform.UWP\x86\</OutputPath>
53+
<OutputPath>bin\x86\Release\</OutputPath>
5454
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
5555
<Optimize>true</Optimize>
5656
<NoWarn>;2008</NoWarn>
@@ -72,7 +72,7 @@
7272
</PropertyGroup>
7373
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
7474
<PlatformTarget>ARM</PlatformTarget>
75-
<OutputPath>..\..\Output\Xamarin.Forms.Platform.UWP\ARM\</OutputPath>
75+
<OutputPath>bin\ARM\Release\</OutputPath>
7676
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
7777
<Optimize>true</Optimize>
7878
<NoWarn>;2008</NoWarn>
@@ -94,7 +94,7 @@
9494
</PropertyGroup>
9595
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
9696
<PlatformTarget>x64</PlatformTarget>
97-
<OutputPath>..\..\Output\Xamarin.Forms.Platform.UWP\x64\</OutputPath>
97+
<OutputPath>bin\x64\Release\</OutputPath>
9898
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
9999
<Optimize>true</Optimize>
100100
<NoWarn>;2008</NoWarn>
@@ -103,10 +103,6 @@
103103
<UseVSHostingProcess>false</UseVSHostingProcess>
104104
<ErrorReport>prompt</ErrorReport>
105105
</PropertyGroup>
106-
<ItemGroup>
107-
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
108-
<None Include="project.json" />
109-
</ItemGroup>
110106
<ItemGroup>
111107
<Compile Include="PlotViewRenderer.cs" />
112108
<Compile Include="Properties\AssemblyInfo.cs" />
@@ -118,15 +114,29 @@
118114
<Name>OxyPlot.Xamarin.Forms</Name>
119115
</ProjectReference>
120116
</ItemGroup>
117+
<ItemGroup>
118+
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
119+
<Version>5.2.2</Version>
120+
</PackageReference>
121+
<PackageReference Include="OxyPlot.Core">
122+
<Version>2.0.0-unstable1035</Version>
123+
</PackageReference>
124+
<PackageReference Include="OxyPlot.Windows">
125+
<Version>2.0.0-unstable1035</Version>
126+
</PackageReference>
127+
<PackageReference Include="Xamarin.Forms">
128+
<Version>2.3.3.180</Version>
129+
</PackageReference>
130+
</ItemGroup>
121131
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
122132
<VisualStudioVersion>14.0</VisualStudioVersion>
123133
</PropertyGroup>
124134
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
125-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
135+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
126136
Other similar extension points exist, see Microsoft.Common.targets.
127137
<Target Name="BeforeBuild">
128138
</Target>
129139
<Target Name="AfterBuild">
130140
</Target>
131141
-->
132-
</Project>
142+
</Project>

Diff for: Source/OxyPlot.Xamarin.Forms.Platform.UWP/project.json

-19
This file was deleted.

Diff for: Source/OxyPlot.Xamarin.Forms.sln

+66-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.4.33110.190
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "4 Examples", "4 Examples", "{0AB67A65-9645-4DF6-98A2-D5734D212E7C}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OxyPlot.Xamarin.Forms", "OxyPlot.Xamarin.Forms\OxyPlot.Xamarin.Forms.csproj", "{B63C5F8C-61C8-4E69-93D6-F49F816D3746}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OxyPlot.Xamarin.Forms", "OxyPlot.Xamarin.Forms\OxyPlot.Xamarin.Forms.csproj", "{B63C5F8C-61C8-4E69-93D6-F49F816D3746}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "3 Xamarin.Forms", "3 Xamarin.Forms", "{B0654A14-51FF-4DAC-A2CB-A6B9D269B9CA}"
1111
EndProject
@@ -38,14 +38,16 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleDemo.Android", "Examp
3838
EndProject
3939
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleDemo.iOS", "Examples\Xamarin.Forms\SimpleDemo\SimpleDemo.iOS\SimpleDemo.iOS.csproj", "{ED6275E6-B519-41E9-89C9-110611CEDFFA}"
4040
EndProject
41-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleDemo", "Examples\Xamarin.Forms\SimpleDemo\SimpleDemo\SimpleDemo.csproj", "{292A7A42-1A55-45EF-9DAA-4A7368CB956F}"
41+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleDemo", "Examples\Xamarin.Forms\SimpleDemo\SimpleDemo\SimpleDemo.csproj", "{292A7A42-1A55-45EF-9DAA-4A7368CB956F}"
4242
EndProject
4343
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OxyPlot.Xamarin.Forms.Platform.MacOS", "OxyPlot.Xamarin.Forms.Platform.MacOS\OxyPlot.Xamarin.Forms.Platform.MacOS.csproj", "{BC883D94-FBB7-46AD-ADFC-2571E4C6FC35}"
4444
EndProject
4545
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OxyPlot.Xamarin.Mac", "OxyPlot.Xamarin.Mac\OxyPlot.Xamarin.Mac.csproj", "{F2A015AC-B7E0-4452-99A5-B5106BF57E24}"
4646
EndProject
4747
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleDemo.MacOS", "Examples\Xamarin.Forms\SimpleDemo\SimpleDemo.MacOS\SimpleDemo.MacOS.csproj", "{45F9FFD0-0424-4DD2-9991-DABFF0FF8ED9}"
4848
EndProject
49+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OxyPlot.Xamarin.Forms.Platform.UWP", "OxyPlot.Xamarin.Forms.Platform.UWP\OxyPlot.Xamarin.Forms.Platform.UWP.csproj", "{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}"
50+
EndProject
4951
Global
5052
GlobalSection(SolutionConfigurationPlatforms) = preSolution
5153
Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
@@ -634,6 +636,62 @@ Global
634636
{45F9FFD0-0424-4DD2-9991-DABFF0FF8ED9}.Release|x64.Build.0 = Release|Any CPU
635637
{45F9FFD0-0424-4DD2-9991-DABFF0FF8ED9}.Release|x86.ActiveCfg = Release|Any CPU
636638
{45F9FFD0-0424-4DD2-9991-DABFF0FF8ED9}.Release|x86.Build.0 = Release|Any CPU
639+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU
640+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU
641+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|ARM.ActiveCfg = Debug|ARM
642+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|ARM.Build.0 = Debug|ARM
643+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
644+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
645+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU
646+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU
647+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|Mixed Platforms.ActiveCfg = Debug|x64
648+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|Mixed Platforms.Build.0 = Debug|x64
649+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|x64.ActiveCfg = Debug|x64
650+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|x64.Build.0 = Debug|x64
651+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|x86.ActiveCfg = Debug|x86
652+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Ad-Hoc|x86.Build.0 = Debug|x86
653+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU
654+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|Any CPU.Build.0 = Debug|Any CPU
655+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|ARM.ActiveCfg = Debug|ARM
656+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|ARM.Build.0 = Debug|ARM
657+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
658+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|iPhone.Build.0 = Debug|Any CPU
659+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU
660+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU
661+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|Mixed Platforms.ActiveCfg = Debug|x64
662+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|Mixed Platforms.Build.0 = Debug|x64
663+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|x64.ActiveCfg = Debug|x64
664+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|x64.Build.0 = Debug|x64
665+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|x86.ActiveCfg = Debug|x86
666+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.AppStore|x86.Build.0 = Debug|x86
667+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
668+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|Any CPU.Build.0 = Debug|Any CPU
669+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|ARM.ActiveCfg = Debug|ARM
670+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|ARM.Build.0 = Debug|ARM
671+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|iPhone.ActiveCfg = Debug|Any CPU
672+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|iPhone.Build.0 = Debug|Any CPU
673+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
674+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
675+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
676+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|Mixed Platforms.Build.0 = Debug|x64
677+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|x64.ActiveCfg = Debug|x64
678+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|x64.Build.0 = Debug|x64
679+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|x86.ActiveCfg = Debug|x86
680+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Debug|x86.Build.0 = Debug|x86
681+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|Any CPU.ActiveCfg = Release|Any CPU
682+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|Any CPU.Build.0 = Release|Any CPU
683+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|ARM.ActiveCfg = Release|ARM
684+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|ARM.Build.0 = Release|ARM
685+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|iPhone.ActiveCfg = Release|Any CPU
686+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|iPhone.Build.0 = Release|Any CPU
687+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
688+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
689+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|Mixed Platforms.ActiveCfg = Release|x64
690+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|Mixed Platforms.Build.0 = Release|x64
691+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|x64.ActiveCfg = Release|x64
692+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|x64.Build.0 = Release|x64
693+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|x86.ActiveCfg = Release|x86
694+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B}.Release|x86.Build.0 = Release|x86
637695
EndGlobalSection
638696
GlobalSection(SolutionProperties) = preSolution
639697
HideSolutionNode = FALSE
@@ -651,6 +709,10 @@ Global
651709
{BC883D94-FBB7-46AD-ADFC-2571E4C6FC35} = {B0654A14-51FF-4DAC-A2CB-A6B9D269B9CA}
652710
{F2A015AC-B7E0-4452-99A5-B5106BF57E24} = {2137DFE4-114E-45AE-BBCD-6A454D1BF82C}
653711
{45F9FFD0-0424-4DD2-9991-DABFF0FF8ED9} = {ED79F831-0097-4AEE-B734-15578C0F6F40}
712+
{DF37BC48-3A9F-4D90-BA38-70F8C22BCA7B} = {B0654A14-51FF-4DAC-A2CB-A6B9D269B9CA}
713+
EndGlobalSection
714+
GlobalSection(ExtensibilityGlobals) = postSolution
715+
SolutionGuid = {E702A4D8-8D5E-462D-82EF-2613E0E69857}
654716
EndGlobalSection
655717
GlobalSection(MonoDevelopProperties) = preSolution
656718
StartupItem = Examples\Xamarin.Forms\SimpleDemo.Android\SimpleDemo.Android.csproj
+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?xml version="1.0"?>
2+
<package>
3+
<metadata>
4+
<id>OxyPlot.Xamarin.Forms</id>
5+
<title>OxyPlot for Xamarin.Forms (iOS, Android and Windows Phone)</title>
6+
<version>2.0.0-beta.1</version>
7+
<authors>Oystein Bjorke</authors>
8+
<description>OxyPlot is a plotting library for .NET. This package includes a portable library for Xamarin.Forms apps and platform-specific libraries for iOS, Android and Windows Phone.</description>
9+
<releaseNotes></releaseNotes>
10+
<licenseUrl>https://raw.githubusercontent.com/oxyplot/oxyplot/master/LICENSE</licenseUrl>
11+
<projectUrl>http://oxyplot.org/</projectUrl>
12+
<iconUrl>https://raw.githubusercontent.com/oxyplot/oxyplot/develop/Icons/OxyPlot_128.png</iconUrl>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<tags>plotting plot charting chart xamarin forms android windows phone ios</tags>
15+
<dependencies>
16+
<group targetFramework="Xamarin.iOS10">
17+
<dependency id="OxyPlot.Core" version="2.0.0"/>
18+
<dependency id="Xamarin.Forms" version="3.0.0.482510" />
19+
</group>
20+
<group targetFramework="MonoAndroid10">
21+
<dependency id="OxyPlot.Core" version="2.0.0"/>
22+
<dependency id="Xamarin.Forms" version="3.0.0.482510" />
23+
</group>
24+
<group targetFramework="uap10.0">
25+
<dependency id="OxyPlot.Windows" version="2.0.0-unstable1035"/>
26+
<dependency id="Xamarin.Forms" version="3.0.0.482510" />
27+
</group>
28+
<group targetFramework="Xamarin.Mac20">
29+
<dependency id="OxyPlot.Core" version="2.0.0"/>
30+
<dependency id="Xamarin.Forms" version="3.0.0.482510" />
31+
</group>
32+
<group targetFramework="netstandard2.0">
33+
<dependency id="OxyPlot.Core" version="2.0.0"/>
34+
<dependency id="Xamarin.Forms" version="3.0.0.482510" />
35+
</group>
36+
</dependencies>
37+
</metadata>
38+
<files>
39+
<file src="bin\Release\netstandard2.0\OxyPlot.Xamarin.Forms.???" target="lib/netstandard2.0" />
40+
41+
<file src="..\OxyPlot.Xamarin.iOS\bin\Release\OxyPlot.Xamarin.iOS.???" target="lib/Xamarin.iOS10" />
42+
<file src="..\OxyPlot.Xamarin.Forms.Platform.iOS\bin\Release\OxyPlot.Xamarin.Forms.Platform.iOS.???" target="lib/Xamarin.iOS10" />
43+
<file src="..\OxyPlot.Xamarin.Forms.Platform.iOS\bin\Release\OxyPlot.Xamarin.Forms.???" target="lib/Xamarin.iOS10" />
44+
45+
<file src="..\OxyPlot.Xamarin.Android\bin\Release\OxyPlot.Xamarin.Android.???" target="lib/MonoAndroid10" />
46+
<file src="..\OxyPlot.Xamarin.Forms.Platform.Android\bin\Release\OxyPlot.Xamarin.Forms.Platform.Android.???" target="lib/MonoAndroid10" />
47+
<file src="..\OxyPlot.Xamarin.Forms.Platform.Android\bin\Release\OxyPlot.Xamarin.Forms.???" target="lib/MonoAndroid10" />
48+
49+
<file src="..\OxyPlot.Xamarin.Mac\bin\Release\OxyPlot.Xamarin.Mac.???" target="lib/Xamarin.Mac20" />
50+
<file src="..\OxyPlot.Xamarin.Forms.Platform.MacOS\bin\Release\OxyPlot.Xamarin.Forms.Platform.Mac.???" target="lib/Xamarin.Mac20" />
51+
<file src="..\OxyPlot.Xamarin.Forms.Platform.MacOS\bin\Release\OxyPlot.Xamarin.Forms.???" target="lib/Xamarin.Mac20" />
52+
53+
<file src="..\OxyPlot.Xamarin.Forms.Platform.UWP\bin\x64\Release\OxyPlot.Xamarin.Forms.Platform.UWP.???" target="lib/uap10.0" />
54+
<file src="..\OxyPlot.Xamarin.Forms.Platform.UWP\bin\x64\Release\OxyPlot.Xamarin.Forms.???" target="lib/uap10.0" />
55+
56+
<file src="..\..\LICENSE" />
57+
<file src="..\..\AUTHORS" />
58+
<file src="..\..\CONTRIBUTORS" />
59+
<file src="..\..\README.md" />
60+
<file src="..\..\CHANGELOG.md" />
61+
</files>
62+
</package>

0 commit comments

Comments
 (0)