Skip to content

Commit 103cce3

Browse files
committed
Updated to .NET Core 1.0 RTM, fixed bug in Double Range plugin
1 parent bb9174f commit 103cce3

File tree

11 files changed

+2581
-4522
lines changed

11 files changed

+2581
-4522
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,3 +178,4 @@ ObjectFiller/ObjectFiller.v2.ncrunchproject
178178
ObjectFiller.Test/ObjectFiller.Test.v2.ncrunchproject
179179
.vs/config/applicationhost.config
180180
Output-Build.txt
181+
.vs/

ObjectFillerNET.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.24720.0
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0EC5FD26-A565-4D47-A192-0FC142C3B7F0}"
77
ProjectSection(SolutionItems) = preProject

Tynamix.ObjectFiller.Test/DefaultDatatypeMappingsTest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ public void Ensure_that_double_does_not_return_infinity()
1515
var filler = new Filler<MyClass>();
1616
var myClass = filler.Create();
1717
Assert.False(double.IsInfinity(myClass._double));
18+
19+
Assert.False(float.IsInfinity(myClass._float));
1820
}
1921

2022
[Fact]

Tynamix.ObjectFiller.Test/Tynamix.ObjectFiller.Test.xproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ProjectGuid>f679fab4-ce29-48f8-b87c-3c89cdaf0d85</ProjectGuid>
1010
<RootNamespace>ObjectFiller.Test</RootNamespace>
1111
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
12-
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
12+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
1313
</PropertyGroup>
1414
<PropertyGroup>
1515
<SchemaVersion>2.0</SchemaVersion>
@@ -18,4 +18,9 @@
1818
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
1919
</ItemGroup>
2020
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
21+
<ProjectExtensions>
22+
<VisualStudio>
23+
<UserProperties project_1json__JSONSchema="http://json.schemastore.org/contribute" />
24+
</VisualStudio>
25+
</ProjectExtensions>
2126
</Project>

Tynamix.ObjectFiller.Test/project.json

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,17 @@
66
"projectUrl": "",
77
"licenseUrl": "",
88

9-
"commands": {
10-
"test": "xunit.runner.dnx"
11-
},
12-
9+
"testRunner": "xunit",
1310
"frameworks": {
1411
"dnx451": {
15-
"compilationOptions": { "define": [ "NET4X" ] }
12+
"buildOptions": { "define": [ "NET4X" ] }
1613
}
1714
},
1815

1916
"dependencies": {
20-
"xunit": "2.1.0",
21-
"xunit.runner.dnx": "2.1.0-rc1-build204",
17+
"xunit": "2.2.0-beta2-build3300",
18+
"dotnet-test-xunit": "2.2.0-preview2-build1029",
2219
"System.Text.RegularExpressions": "4.0.11-beta-23516",
23-
"Tynamix.ObjectFiller": "1.5.0-*"
20+
"Tynamix.ObjectFiller": "1.5.1-*"
2421
}
2522
}

0 commit comments

Comments
 (0)