Skip to content

Commit

Permalink
Make the project ready for .NET Standard TFM
Browse files Browse the repository at this point in the history
  • Loading branch information
am11 committed May 9, 2016
1 parent e1d14a2 commit a13753b
Show file tree
Hide file tree
Showing 30 changed files with 311 additions and 575 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ publish

# NuGet Packages Directory
packages
*.lock.json

# Windows Azure Build Output
csx
Expand All @@ -93,6 +94,7 @@ AppPackages/
# Others
[Bb]in
[Oo]bj
artifacts
sql
TestResults
[Tt]est[Rr]esult*
Expand Down
7 changes: 0 additions & 7 deletions .nuget/NuGet.Config

This file was deleted.

136 changes: 0 additions & 136 deletions .nuget/NuGet.targets

This file was deleted.

102 changes: 0 additions & 102 deletions MaxMind.Db.Benchmark/MaxMind.Db.Benchmark.csproj

This file was deleted.

20 changes: 20 additions & 0 deletions MaxMind.Db.Benchmark/MaxMind.Db.Benchmark.xproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>

<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>f1051d87-38be-4e9c-b7b3-9fa2dfb4fb56</ProjectGuid>
<RootNamespace>MaxMind.Db.Benchmark</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>

<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
7 changes: 0 additions & 7 deletions MaxMind.Db.Benchmark/app.config

This file was deleted.

32 changes: 32 additions & 0 deletions MaxMind.Db.Benchmark/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"version": "2.0.0-*",
"description": "Benchmark project to validate .NET reader for the MaxMind DB file format",
"packOptions": {
"authors": [ "MaxMind, Inc." ],
"tags": [ "" ],
"projectUrl": "https://github.com/maxmind/MaxMind-DB-Reader-dotnet",
"licenseUrl": "https://github.com/maxmind/MaxMind-DB-Reader-dotnet/blob/v2.0.0/LICENSE",
"copyright": "Copyright © 2013-2016"
},

"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
"MaxMind.Db": "2.0.0-*"
},
"frameworks": {
"net45": { },
"netcoreapp1.0": {
"imports": "dnxcore50",
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0-rc2-3002543"
},
"Microsoft.CSharp": "4.0.1-rc3-24026-00",
"System.Console": "4.0.0-rc3-24026-00",
}
}
}
}
2 changes: 1 addition & 1 deletion MaxMind.Db.Test/DecoderTest.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#region

using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Numerics;
using System.Text;
using NUnit.Framework;

#endregion

Expand Down
Loading

0 comments on commit a13753b

Please sign in to comment.