Skip to content

Commit 6b486fb

Browse files
committed
move to net standard
1 parent e71dc80 commit 6b486fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+207
-649
lines changed

.paket/Paket.Restore.targets

Lines changed: 0 additions & 22 deletions
This file was deleted.

.paket/paket.exe.config

Lines changed: 0 additions & 6 deletions
This file was deleted.

.paket/paket.targets

Lines changed: 0 additions & 43 deletions
This file was deleted.

build.bat

Lines changed: 0 additions & 11 deletions
This file was deleted.

build.fsx

Lines changed: 0 additions & 50 deletions
This file was deleted.

paket.dependencies

Lines changed: 0 additions & 3 deletions
This file was deleted.

paket.lock

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<configuration>
3-
<runtime>
4-
<gcAllowVeryLargeObjects enabled="true" />
5-
</runtime>
63
<startup>
7-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
85
</startup>
96
</configuration>

src/Dijkstra.NET/Dijkstra.NET.Benchmark/BfsParallelBenchmark.cs renamed to src/Dijkstra.NET.Benchmark/BfsParallelBenchmark.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
namespace Dijkstra.NET.Benchmark
2-
{
3-
using Contract;
4-
using Model;
5-
using ShortestPath;
1+
using Dijkstra.NET.Contract;
2+
using Dijkstra.NET.Model;
3+
using Dijkstra.NET.ShortestPath;
64

5+
namespace Dijkstra.NET.Benchmark
6+
{
77
public class BfsParallelBenchmark: DijkstraBenchmarkBase
88
{
99
public BfsParallelBenchmark()

src/Dijkstra.NET/Dijkstra.NET.Benchmark/Dijkstra.NET.Benchmark.csproj renamed to src/Dijkstra.NET.Benchmark/Dijkstra.NET.Benchmark.csproj

Lines changed: 4 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{2BBC072D-75B7-43A3-BECB-BEF9562EE377}</ProjectGuid>
7+
<ProjectGuid>{FD137CCE-DB20-4C6A-ABBB-6E853994DB29}</ProjectGuid>
88
<OutputType>Exe</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
109
<RootNamespace>Dijkstra.NET.Benchmark</RootNamespace>
1110
<AssemblyName>Dijkstra.NET.Benchmark</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1312
<FileAlignment>512</FileAlignment>
1413
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1514
</PropertyGroup>
@@ -32,30 +31,9 @@
3231
<ErrorReport>prompt</ErrorReport>
3332
<WarningLevel>4</WarningLevel>
3433
</PropertyGroup>
35-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
36-
<DebugSymbols>true</DebugSymbols>
37-
<OutputPath>bin\x64\Debug\</OutputPath>
38-
<DefineConstants>DEBUG;TRACE</DefineConstants>
39-
<DebugType>full</DebugType>
40-
<PlatformTarget>x64</PlatformTarget>
41-
<ErrorReport>prompt</ErrorReport>
42-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
43-
<Prefer32Bit>true</Prefer32Bit>
44-
</PropertyGroup>
45-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
46-
<OutputPath>bin\x64\Release\</OutputPath>
47-
<DefineConstants>TRACE</DefineConstants>
48-
<Optimize>true</Optimize>
49-
<DebugType>pdbonly</DebugType>
50-
<PlatformTarget>x64</PlatformTarget>
51-
<ErrorReport>prompt</ErrorReport>
52-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
53-
<Prefer32Bit>true</Prefer32Bit>
54-
</PropertyGroup>
5534
<ItemGroup>
5635
<Reference Include="System" />
5736
<Reference Include="System.Core" />
58-
<Reference Include="System.Management" />
5937
<Reference Include="System.Xml.Linq" />
6038
<Reference Include="System.Data.DataSetExtensions" />
6139
<Reference Include="Microsoft.CSharp" />
@@ -75,16 +53,9 @@
7553
</ItemGroup>
7654
<ItemGroup>
7755
<ProjectReference Include="..\Dijkstra.NET\Dijkstra.NET.csproj">
78-
<Project>{9699834f-a0ce-4653-ae38-55922352d4b5}</Project>
56+
<Project>{2d42c275-6a10-4ac9-bbcf-1483feb68b04}</Project>
7957
<Name>Dijkstra.NET</Name>
8058
</ProjectReference>
8159
</ItemGroup>
8260
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
83-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
84-
Other similar extension points exist, see Microsoft.Common.targets.
85-
<Target Name="BeforeBuild">
86-
</Target>
87-
<Target Name="AfterBuild">
88-
</Target>
89-
-->
9061
</Project>

0 commit comments

Comments
 (0)