Skip to content

Commit

Permalink
Move things into subfolders.
Browse files Browse the repository at this point in the history
  • Loading branch information
airbreather committed Aug 4, 2018
1 parent 0c8639c commit 24240b5
Show file tree
Hide file tree
Showing 43 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions NetTopologySuite.IO.GPX.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2018
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetTopologySuite.IO.GPX", "NetTopologySuite.IO.GPX\NetTopologySuite.IO.GPX.csproj", "{0088947E-CE0D-418D-BAFD-440097CD8FCD}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetTopologySuite.IO.GPX", "src\NetTopologySuite.IO.GPX\NetTopologySuite.IO.GPX.csproj", "{0088947E-CE0D-418D-BAFD-440097CD8FCD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{16A6CD7F-59F6-476B-9F81-EAE72A71F1A0}"
ProjectSection(SolutionItems) = preProject
Expand All @@ -18,7 +18,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
release-notes.md = release-notes.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetTopologySuite.IO.GPX.Tests", "NetTopologySuite.IO.GPX.Tests\NetTopologySuite.IO.GPX.Tests.csproj", "{09AFDADF-1CC1-4E6F-81DD-3D4D590BFA24}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetTopologySuite.IO.GPX.Tests", "tests\NetTopologySuite.IO.GPX.Tests\NetTopologySuite.IO.GPX.Tests.csproj", "{09AFDADF-1CC1-4E6F-81DD-3D4D590BFA24}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<SolutionDir Condition=" '$(SolutionDir)' == '' ">$(ProjectDir)..\</SolutionDir>
<SolutionDir Condition=" '$(SolutionDir)' == '' ">$(ProjectDir)..\..\</SolutionDir>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>NetTopologySuite.IO</RootNamespace>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<SolutionDir Condition=" '$(SolutionDir)' == '' ">$(ProjectDir)..\</SolutionDir>
<SolutionDir Condition=" '$(SolutionDir)' == '' ">$(ProjectDir)..\..\</SolutionDir>
<RootNamespace>NetTopologySuite.IO</RootNamespace>
<LangVersion>7.3</LangVersion>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="$(SolutionDir)NetTopologySuite.IO.GPX\NetTopologySuite.IO.GPX.csproj" />
<ProjectReference Include="$(SolutionDir)src\NetTopologySuite.IO.GPX\NetTopologySuite.IO.GPX.csproj" />

<PackageReference Include="NetTopologySuite" Version="1.15.0" />
<PackageReference Include="NetTopologySuite.Features" Version="1.15.0" />
Expand Down
2 changes: 1 addition & 1 deletion travis-build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
dotnet build -c Release
dotnet test NetTopologySuite.IO.GPX.Tests --no-build --no-restore -c Release
dotnet test tests/NetTopologySuite.IO.GPX.Tests --no-build --no-restore -c Release
if [ "$TRAVIS_EVENT_TYPE" = "push" ] && [ "$TRAVIS_BRANCH" = "develop" ]
then
dotnet pack --no-build --no-dependencies --version-suffix=travis$(printf "%05d" $TRAVIS_BUILD_NUMBER) --output $TRAVIS_BUILD_DIR -c Release
Expand Down

0 comments on commit 24240b5

Please sign in to comment.