mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2025-12-06 07:12:04 +01:00
Added .NET Standard library + upgraded .NET 4.5 to the supported 4.5.2
This commit is contained in:
parent
d0bff9f06e
commit
7b7cafdbfb
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<version>1.6.1</version>
|
||||
<version>2.0.0-beta1</version>
|
||||
<authors>Morten Nielsen</authors>
|
||||
<owners>Morten Nielsen</owners>
|
||||
<licenseUrl>http://opensource.org/licenses/ms-pl.html</licenseUrl>
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ msbuild ..\..\src\NmeaParser.WinPhone\NmeaParser.WinPhone.csproj /t:Rebuild /p:C
|
|||
msbuild ..\..\src\NmeaParser.UWP\NmeaParser.UWP.csproj /t:Rebuild /p:Configuration=Release
|
||||
msbuild ..\..\src\NmeaParser.Android\NmeaParser.Android.csproj /t:Rebuild /p:Configuration=Release
|
||||
msbuild ..\..\src\NmeaParser.iOS\NmeaParser.iOS.csproj /t:Rebuild /p:Configuration=Release
|
||||
msbuild ..\..\src\NmeaParser.NetStandard\NmeaParser.NetStandard.csproj /t:Rebuild /p:Configuration=Release
|
||||
xcopy ..\..\src\bin\Release\NmeaParser.WinStore.dll .\NmeaParser\lib\netcore45\ /Y
|
||||
xcopy ..\..\src\bin\Release\NmeaParser.WinStore.xml .\NmeaParser\lib\netcore45\ /Y
|
||||
xcopy ..\..\src\bin\Release\NmeaParser.WinPhone.dll .\NmeaParser\lib\wpa\ /Y
|
||||
|
|
@ -22,6 +23,8 @@ xcopy ..\..\src\bin\Release\NmeaParser.Android.dll .\NmeaParser\lib\MonoAndroid1
|
|||
xcopy ..\..\src\bin\Release\NmeaParser.Android.xml .\NmeaParser\lib\MonoAndroid10\ /Y
|
||||
xcopy ..\..\src\bin\Release\NmeaParser.iOS.dll .\NmeaParser\lib\Xamarin.iOS10\ /Y
|
||||
xcopy ..\..\src\bin\Release\NmeaParser.iOS.xml .\NmeaParser\lib\Xamarin.iOS10\ /Y
|
||||
xcopy ..\..\src\bin\Release\netstandard1.4\NmeaParser.NetStandard.dll .\NmeaParser\lib\netstandard1.4\ /Y
|
||||
xcopy ..\..\src\bin\Release\netstandard1.4\NmeaParser.NetStandard.xml .\NmeaParser\lib\netstandard1.4\ /Y
|
||||
|
||||
|
||||
@echo *******************************************
|
||||
|
|
|
|||
29
src/NmeaParser.NetStandard/NmeaParser.NetStandard.csproj
Normal file
29
src/NmeaParser.NetStandard/NmeaParser.NetStandard.csproj
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard1.4</TargetFramework>
|
||||
<RootNamespace>NmeaParser</RootNamespace>
|
||||
<PackageId>NmeaParser.NetStandard</PackageId>
|
||||
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
|
||||
<Company></Company>
|
||||
<Product>NmeaParser</Product>
|
||||
<Authors>Morten Nielsen</Authors>
|
||||
<Copyright>Copyright © Morten Nielsen 2015-2017</Copyright>
|
||||
<PackageProjectUrl>https://github.com/dotMorten/NmeaParser</PackageProjectUrl>
|
||||
<RepositoryUrl>https://github.com/dotMorten/NmeaParser</RepositoryUrl>
|
||||
<PackageLicenseUrl>https://github.com/dotMorten/NmeaParser/blob/master/LICENCE.TXT</PackageLicenseUrl>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<DocumentationFile>..\Bin\Debug\netstandard1.4\NmeaParser.NetStandard.xml</DocumentationFile>
|
||||
<OutputPath>..\Bin\Debug\</OutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||
<OutputPath>..\Bin\Release\</OutputPath>
|
||||
<DocumentationFile>..\Bin\Release\netstandard1.4\NmeaParser.NetStandard.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<Import Project="..\NmeaParser.Shared\NmeaParser.Shared.projitems" Label="Shared" />
|
||||
|
||||
</Project>
|
||||
|
|
@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Morten Nielsen")]
|
||||
[assembly: AssemblyProduct("NmeaParser")]
|
||||
[assembly: AssemblyCopyright("Copyright © Morten Nielsen 2015")]
|
||||
[assembly: AssemblyCopyright("Copyright © Morten Nielsen 2015-2017")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
|
|
|
|||
|
|
@ -9,8 +9,9 @@
|
|||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>NmeaParser</RootNamespace>
|
||||
<AssemblyName>NmeaParser.WinDesktop</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
|
|
|
|||
Loading…
Reference in a new issue