Changed to normal framework

This commit is contained in:
Philip Schell 2019-06-28 11:46:22 +02:00
parent 570ec853de
commit f7b601de40
4 changed files with 106 additions and 90 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/.vs
/CoordinateSharp/obj
/CoordinateSharp/bin

View File

@ -1,11 +1,9 @@
 
Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15 # Visual Studio 15
VisualStudioVersion = 15.0.27703.2026 VisualStudioVersion = 15.0.28307.572
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoordinateSharp", "CoordinateSharp\CoordinateSharp.csproj", "{82B32704-3306-49FD-A7FA-DB48B67B7B64}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CoordinateSharp", "CoordinateSharp\CoordinateSharp.csproj", "{DA8510CE-7899-49DD-9E17-7C974382288D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CoordinateSharp_TestProj", "CoordinateSharp_TestProj\CoordinateSharp_TestProj.csproj", "{B4E46A02-7C45-4A13-8D62-F99FCA853BDC}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -13,19 +11,15 @@ Global
Release|Any CPU = Release|Any CPU Release|Any CPU = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution GlobalSection(ProjectConfigurationPlatforms) = postSolution
{82B32704-3306-49FD-A7FA-DB48B67B7B64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DA8510CE-7899-49DD-9E17-7C974382288D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{82B32704-3306-49FD-A7FA-DB48B67B7B64}.Debug|Any CPU.Build.0 = Debug|Any CPU {DA8510CE-7899-49DD-9E17-7C974382288D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{82B32704-3306-49FD-A7FA-DB48B67B7B64}.Release|Any CPU.ActiveCfg = Release|Any CPU {DA8510CE-7899-49DD-9E17-7C974382288D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{82B32704-3306-49FD-A7FA-DB48B67B7B64}.Release|Any CPU.Build.0 = Release|Any CPU {DA8510CE-7899-49DD-9E17-7C974382288D}.Release|Any CPU.Build.0 = Release|Any CPU
{B4E46A02-7C45-4A13-8D62-F99FCA853BDC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B4E46A02-7C45-4A13-8D62-F99FCA853BDC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B4E46A02-7C45-4A13-8D62-F99FCA853BDC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B4E46A02-7C45-4A13-8D62-F99FCA853BDC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
EndGlobalSection EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {580EC371-2895-4067-9F0F-9E3E9ABED545} SolutionGuid = {B0E0544A-5C8D-408D-A66B-BF1148AE16A0}
EndGlobalSection EndGlobalSection
EndGlobal EndGlobal

View File

@ -1,86 +1,69 @@
<Project Sdk="Microsoft.NET.Sdk"> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net40; netstandard1.3; netstandard1.4; netstandard2.0</TargetFrameworks> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <ProjectGuid>{DA8510CE-7899-49DD-9E17-7C974382288D}</ProjectGuid>
<Version>1.1.5.2</Version> <OutputType>Exe</OutputType>
<Authors>Justin Gielski</Authors> <RootNamespace>CoordinateSharp</RootNamespace>
<Company /> <AssemblyName>CoordinateSharp</AssemblyName>
<PackageProjectUrl>https://github.com/Tronald/CoordinateSharp</PackageProjectUrl> <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<PackageLicenseUrl></PackageLicenseUrl> <FileAlignment>512</FileAlignment>
<Copyright>Copyright 2019</Copyright> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Description>A simple .NET standard library that is designed to assist with geographic coordinate conversions, formatting and location based celestial calculations.</Description> <Deterministic>true</Deterministic>
<PackageReleaseNotes>Fixes issues with distance bearings reversing in certain regions.</PackageReleaseNotes>
<PackageTags>CoordinateSharp Latitude Longitude Coordinates Geography Sun Moon Solar Lunar Time MGRS UTM Julian ECEF</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://raw.githubusercontent.com/Tronald/CoordinateSharp/master/ICON.png</PackageIconUrl>
<PackageId>CoordinateSharp</PackageId>
<Title>CoordinateSharp</Title>
<AssemblyVersion>1.1.5.2</AssemblyVersion>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net40|AnyCPU'"> <PlatformTarget>AnyCPU</PlatformTarget>
<DocumentationFile>bin\Release\net40\CoordinateSharp.xml</DocumentationFile> <DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.3|AnyCPU'"> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DocumentationFile>bin\Release\netstandard1.3\CoordinateSharp.xml</DocumentationFile> <PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.4|AnyCPU'"> <ItemGroup>
<DocumentationFile>bin\Release\netstandard1.4\CoordinateSharp.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\CoordinateSharp.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net40|AnyCPU'">
<DocumentationFile>bin\Debug\net40\CoordinateSharp.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.3|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard1.3\CoordinateSharp.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.4|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard1.4\CoordinateSharp.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\CoordinateSharp.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net40'">
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Core" /> <Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" /> <Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> <ItemGroup>
<PackageReference Include="System.Reflection.TypeExtensions"> <Compile Include="Celestial.Assistant.cs" />
<Version>4.5.0</Version> <Compile Include="Celestial.cs" />
</PackageReference> <Compile Include="Celestial.LunarEclipseCalc.cs" />
<PackageReference Include="System.Runtime.Serialization.Formatters"> <Compile Include="Celestial.MeeusTables.cs" />
<Version>4.3.0</Version> <Compile Include="Celestial.MoonCalculations.cs" />
</PackageReference> <Compile Include="Celestial.SolarEclipseCalc.cs" />
<PackageReference Include="System.Runtime.Serialization.Primitives"> <Compile Include="Celestial.SunCalculations.cs" />
<Version>4.3.0</Version> <Compile Include="Coordinate.Assistant.cs" />
</PackageReference> <Compile Include="Coordinate.Cartesian.cs" />
<Compile Include="Coordinate.cs" />
<Compile Include="Coordinate.EagerLoad.cs" />
<Compile Include="Coordinate.ECEF.cs" />
<Compile Include="Coordinate.Formatting.cs" />
<Compile Include="Coordinate.MGRS.cs" />
<Compile Include="Coordinate.Parser.cs" />
<Compile Include="Coordinate.UTM.cs" />
<Compile Include="Distance.cs" />
<Compile Include="Eclipse\LunarData.cs" />
<Compile Include="Eclipse\SolarData.cs" />
<Compile Include="GeoFence.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.4'"> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PackageReference Include="System.Reflection.TypeExtensions"> </Project>
<Version>4.5.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.Serialization.Formatters">
<Version>4.3.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.Serialization.Primitives">
<Version>4.3.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
<PackageReference Include="System.Reflection.TypeExtensions">
<Version>4.5.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.Serialization.Formatters">
<Version>4.3.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.Serialization.Primitives">
<Version>4.3.0</Version>
</PackageReference>
</ItemGroup>
</Project>

View File

@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind.
[assembly: AssemblyTitle("CoordinateSharp")]
[assembly: AssemblyDescription("A simple .NET standard library that is designed to assist with geographic coordinate conversions, formatting and location based celestial calculations.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("CoordinateSharp")]
[assembly: AssemblyCopyright("Copyright 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
[assembly: ComVisible(false)]
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
[assembly: Guid("da8510ce-7899-49dd-9e17-7c974382288d")]
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
//
// Hauptversion
// Nebenversion
// Buildnummer
// Revision
//
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.5.2")]
[assembly: AssemblyFileVersion("1.1.5.2")]