Skip to content
This repository was archived by the owner on Dec 15, 2024. It is now read-only.

Commit c32c474

Browse files
authored
Merge pull request #34 from ivanz/dotnet-port
.NET Standard 1.3 (.NET Core/UWP/UAP support)
2 parents 2bc846b + b185eb2 commit c32c474

File tree

84 files changed

+1276
-1511
lines changed

Some content is hidden

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

84 files changed

+1276
-1511
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*.cs]
4+
indent_style = space
5+
indent_size = 4
6+
7+
[project.json]
8+
indent_style = space
9+
indent_size = 4
10+
11+
[appveyor.yml]
12+
indent_style = space
13+
indent_size = 2

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
project.lock.json
2+
.vs/
3+
.vscode/
14
key.txt
25
/Source/*/obj
36
/Source/*/bin
@@ -19,5 +22,5 @@ Source/GlobalAssemblyInfo.cs
1922
*_mm_cache.bin
2023
*.user
2124
Source/packages
22-
*.ncrunch*
23-
.fake
25+
*.ncrunch*
26+
.fake

Source/.nuget/NuGet.Config

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

Source/.nuget/nuget.exe

-1.61 MB
Binary file not shown.

Source/.nuget/packages.config

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

Source/Machine.Fakes.Adapters.FakeItEasy/FakeItEasyEngine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public override object CreateFake(Type interfaceType, params object[] args)
3838

3939
Delegate CreateOptionsFor(Type type, IEnumerable ctorArgs)
4040
{
41-
var optType = typeof(IFakeOptionsBuilder<>).MakeGenericType(new[] { type });
41+
var optType = typeof(IFakeOptions<>).MakeGenericType(new[] { type });
4242
var actType = typeof(Action<>).MakeGenericType(new[] { optType });
4343

4444
var r = Expression.Parameter(optType, "r");

Source/Machine.Fakes.Adapters.FakeItEasy/Machine.Fakes.Adapters.FakeItEasy.csproj

Lines changed: 0 additions & 74 deletions
This file was deleted.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
5+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
6+
</PropertyGroup>
7+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
8+
<PropertyGroup Label="Globals">
9+
<ProjectGuid>86e1223e-4d68-41d8-84ad-b68d40a06d66</ProjectGuid>
10+
<RootNamespace>Machine.Fakes.Adapters.FakeItEasy</RootNamespace>
11+
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
12+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
13+
</PropertyGroup>
14+
15+
<PropertyGroup>
16+
<SchemaVersion>2.0</SchemaVersion>
17+
</PropertyGroup>
18+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
19+
</Project>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
using System.Reflection;
2+
3+
[assembly: AssemblyTitle("Machine.Fakes.Adapters.FakeItEasy")]
4+
[assembly: AssemblyVersion("0.2.7.0")]
5+
[assembly: AssemblyDescription("An integration layer for fake frameworks on top of MSpec")]
6+
[assembly: AssemblyConfiguration("")]
7+
[assembly: AssemblyCopyrightAttribute("2011 - 2014 Bjoern Rochel, Steffen Forkmann, Simon Hohenadl et al.")]

Source/Machine.Fakes.Adapters.FakeItEasy/packages.config

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

0 commit comments

Comments
 (0)