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

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <maungu@microsoft.com>2022-03-02 07:55:22 +0300
committerMarius Ungureanu <maungu@microsoft.com>2022-03-02 07:55:22 +0300
commit38cf845fc77436a8888af3aa443a640540354b86 (patch)
tree4f3a94de5dfe7b14e54134c3f25c0d83eb9298bd
parent81dae1389134703ef4764f7b49b0f54ea9467b36 (diff)
Auto-generate assemblyinfo so minimum OS version works
-rwxr-xr-xXwt.XamMac/AssemblyInfo.cs28
-rw-r--r--Xwt.XamMac/Xwt.XamMac.csproj9
2 files changed, 8 insertions, 29 deletions
diff --git a/Xwt.XamMac/AssemblyInfo.cs b/Xwt.XamMac/AssemblyInfo.cs
deleted file mode 100755
index ea440b81..00000000
--- a/Xwt.XamMac/AssemblyInfo.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-
-// Information about this assembly is defined by the following attributes.
-// Change them to the values specific to your project.
-
-[assembly: AssemblyTitle("Xwt.XamMac")]
-[assembly: AssemblyDescription("Xamarin Mac Toolkit for the Xwt UI Framework")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("Xwt UI Framework")]
-[assembly: AssemblyCopyright("Xamarin, Inc (http://www.xamarin.com)")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
-// The form "{Major}.{Minor}.*" will automatically update the build and revision,
-// and "{Major}.{Minor}.{Build}.*" will update just the revision.
-
-[assembly: AssemblyVersion("0.1.0.0")]
-[assembly: AssemblyInformationalVersion("0.1.0.0-prerelease")]
-
-// The following attributes are used to specify the signing key for the assembly,
-// if desired. See the Mono documentation for more information about signing.
-
-//[assembly: AssemblyDelaySign(false)]
-//[assembly: AssemblyKeyFile("")]
-
diff --git a/Xwt.XamMac/Xwt.XamMac.csproj b/Xwt.XamMac/Xwt.XamMac.csproj
index 5da321c0..c170efe0 100644
--- a/Xwt.XamMac/Xwt.XamMac.csproj
+++ b/Xwt.XamMac/Xwt.XamMac.csproj
@@ -9,9 +9,16 @@
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\xwt.snk</AssemblyOriginatorKeyFile>
<TargetFramework>$(MacTargetFramework)</TargetFramework>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<DisableImplicitNamespaceImports>True</DisableImplicitNamespaceImports>
+
<SupportedOSPlatformVersion>10.14</SupportedOSPlatformVersion>
+
+ <AssemblyTitle>Xwt.XamMac</AssemblyTitle>
+ <AssemblyDescription>Xamarin Mac Toolkit for the Xwt UI Framework</AssemblyDescription>
+ <Product>Xwt UI Framework</Product>
+ <Copyright>Microsoft, Inc (https://www.microsoft.com/)</Copyright>
+ <AssemblyVersion>0.1.0.0</AssemblyVersion>
+ <InformationalVersion>0.1.0.0-prerelease</InformationalVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>