Skip to content

Commit e27db69

Browse files
committed
Bump version to 2.1.0.2, remove images and add tests project
1 parent d292c3c commit e27db69

File tree

10 files changed

+43
-2
lines changed

10 files changed

+43
-2
lines changed
-4.55 MB
Binary file not shown.
-366 KB
Binary file not shown.
-286 KB
Binary file not shown.

Images/example-openstreetmap.png

-3.53 MB
Binary file not shown.

OxyPlot.Cartography.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SimpleDemo", "SimpleDemo",
1313
EndProject
1414
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleDemo", "SimpleDemo\SimpleDemo.csproj", "{BF9B493B-3883-45A3-AE5A-B3F6171E0AB1}"
1515
EndProject
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OxyPlot.Core.Cartography.Tests", "OxyPlot.Core.Cartography.Tests\OxyPlot.Core.Cartography.Tests.csproj", "{73A3D381-AF2D-44E1-9EFC-19DD97A60DCE}"
17+
EndProject
1618
Global
1719
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1820
Debug|Any CPU = Debug|Any CPU
@@ -27,6 +29,10 @@ Global
2729
{BF9B493B-3883-45A3-AE5A-B3F6171E0AB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
2830
{BF9B493B-3883-45A3-AE5A-B3F6171E0AB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
2931
{BF9B493B-3883-45A3-AE5A-B3F6171E0AB1}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{73A3D381-AF2D-44E1-9EFC-19DD97A60DCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{73A3D381-AF2D-44E1-9EFC-19DD97A60DCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{73A3D381-AF2D-44E1-9EFC-19DD97A60DCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{73A3D381-AF2D-44E1-9EFC-19DD97A60DCE}.Release|Any CPU.Build.0 = Release|Any CPU
3036
EndGlobalSection
3137
GlobalSection(SolutionProperties) = preSolution
3238
HideSolutionNode = FALSE
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
13+
<PackageReference Include="xunit" Version="2.4.1" />
14+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
15+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
16+
<PrivateAssets>all</PrivateAssets>
17+
</PackageReference>
18+
<PackageReference Include="coverlet.collector" Version="3.1.2">
19+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20+
<PrivateAssets>all</PrivateAssets>
21+
</PackageReference>
22+
</ItemGroup>
23+
24+
</Project>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
namespace OxyPlot.Core.Cartography.Tests
2+
{
3+
public class UnitTest1
4+
{
5+
[Fact]
6+
public void Test1()
7+
{
8+
9+
}
10+
}
11+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
global using Xunit;

OxyPlot.Core.Cartography/OxyPlot.Core.Cartography.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Nullable>enable</Nullable>
77
<RootNamespace>OxyPlot</RootNamespace>
88
<GenerateDocumentationFile>True</GenerateDocumentationFile>
9-
<Version>2.1.0.1</Version>
9+
<Version>2.1.0.2</Version>
1010
<Authors>BobLd, OxyPlot</Authors>
1111
<Company />
1212
<Description>OxyPlot is a plotting library for .NET. This is an unofficial library for cartography and maps plotting.</Description>

SimpleDemo/ViewModels/MapViewModel.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ private PlotModel CreateMapPlotView()
124124
});
125125
}
126126

127-
128127
return model;
129128
}
130129
}

0 commit comments

Comments
 (0)