Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/core/MonoDevelop.Core/MonoDevelop.Projects/PortableDotNetProjectFlavor.cs')
-rw-r--r--main/src/core/MonoDevelop.Core/MonoDevelop.Projects/PortableDotNetProjectFlavor.cs84
1 files changed, 84 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/PortableDotNetProjectFlavor.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/PortableDotNetProjectFlavor.cs
new file mode 100644
index 0000000000..4a30eee279
--- /dev/null
+++ b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/PortableDotNetProjectFlavor.cs
@@ -0,0 +1,84 @@
+//
+// PortableDotNetProjectFlavor.cs
+//
+// Author:
+// Lluis Sanchez Gual <lluis@xamarin.com>
+//
+// Copyright (c) 2014 Xamarin, Inc (http://www.xamarin.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+using System;
+using System.Collections.Generic;
+using MonoDevelop.Core.Assemblies;
+using System.Linq;
+
+namespace MonoDevelop.Projects
+{
+ public class PortableDotNetProjectFlavor: DotNetProjectExtension
+ {
+ internal protected override void OnGetProjectTypes (HashSet<string> types)
+ {
+ types.Add ("PortableDotNet");
+ }
+
+ internal protected override bool OnGetSupportsFormat (FileFormat format)
+ {
+ int version;
+
+ if (!format.Id.StartsWith ("MSBuild", StringComparison.Ordinal))
+ return false;
+
+ if (!int.TryParse (format.Id.Substring ("MSBuild".Length), out version))
+ return false;
+
+ return version >= 10;
+ }
+
+ internal protected override bool OnGetSupportsFramework (TargetFramework framework)
+ {
+ return framework.Id.Identifier == TargetFrameworkMoniker.ID_PORTABLE;
+ }
+
+ internal protected override TargetFrameworkMoniker OnGetDefaultTargetFrameworkForFormat (FileFormat format)
+ {
+ // Note: This value is used only when serializing the TargetFramework to the .csproj file.
+ // Any component of the TargetFramework that is different from this base TargetFramework
+ // value will be serialized.
+ //
+ // Therefore, if we only specify the TargetFrameworkIdentifier, then both the
+ // TargetFrameworkVersion and TargetFrameworkProfile values will be serialized.
+ return new TargetFrameworkMoniker (".NETPortable", "1.0");
+ }
+
+ internal protected override TargetFrameworkMoniker OnGetDefaultTargetFrameworkId ()
+ {
+ // Profile78 includes .NET 4.5+, Windows Phone 8, and Xamarin.iOS/Android, so make that our default.
+ // Note: see also: PortableLibrary.xpt.xml
+ return new TargetFrameworkMoniker (".NETPortable", "4.5", "Profile78");
+ }
+
+ internal protected override IEnumerable<string> OnGetReferencedAssemblies (ConfigurationSelector configuration, bool includeProjectReferences)
+ {
+ var res = base.OnGetReferencedAssemblies (configuration, includeProjectReferences);
+ var asms = Project.TargetRuntime.AssemblyContext.GetAssemblies (Project.TargetFramework).Where (a => a.Package.IsFrameworkPackage).Select (a => a.Location);
+ return res.Concat (asms).Distinct ();
+ }
+ }
+}
+