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

Commit

Permalink
Transition to the new .xproj project system and hook into AppVeyor CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanz committed Aug 3, 2016
1 parent 570fd64 commit 54d9e36
Show file tree
Hide file tree
Showing 53 changed files with 527 additions and 1,416 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
root = true

[*.cs]
indent_style = space
indent_size = 4

[project.json]
indent_style = space
indent_size = 4

[appveyor.yml]
indent_style = space
indent_size = 2
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project.lock.json
/.vs
/.vscode
.vs/
.vscode/
key.txt
/Source/*/obj
/Source/*/bin
Expand Down
6 changes: 0 additions & 6 deletions Source/.nuget/NuGet.Config

This file was deleted.

Binary file removed Source/.nuget/nuget.exe
Binary file not shown.
4 changes: 0 additions & 4 deletions Source/.nuget/packages.config

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?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)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>86e1223e-4d68-41d8-84ad-b68d40a06d66</ProjectGuid>
<RootNamespace>Machine.Fakes.Adapters.FakeItEasy</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
</PropertyGroup>

<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
using System.Reflection;

[assembly: AssemblyTitle("Machine.Fakes.Adapters.FakeItEasy")]
[assembly: AssemblyVersion("0.2.7.0")]
[assembly: AssemblyDescription("An integration layer for fake frameworks on top of MSpec")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCopyrightAttribute("2011 - 2014 Bjoern Rochel, Steffen Forkmann, Simon Hohenadl et al.")]
4 changes: 0 additions & 4 deletions Source/Machine.Fakes.Adapters.FakeItEasy/packages.config

This file was deleted.

2 changes: 1 addition & 1 deletion Source/Machine.Fakes.Adapters.FakeItEasy/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"iconUrl": "https://github.com/machine/machine.fakes/raw/master/machine.fakes-128x128.png",
"tags": [ "tdd", "bdd", "testing", "unittest", "fakes", "mocks", "mspec", "mfakes" ],
"requireLicenseAcceptance": false,
"releaseNotes": "See https://github.com/machine/machine.fakes/blob/master/changelog.markdown"
"releaseNotes": "See https://github.com/machine/machine.fakes/releases"
},
"description": "Machine.Fakes attempts to simplify the usage of such frameworks on top of Machine.Specifications by helping to reduce a lot of the typical fake framwork related clutter code in specifications. If you choose so, Machine.Fakes even helps you to stay mostly independent of a concrete fake framework by providing a little wrapper API and a provider model for fake frameworks. ",
"authors": [
Expand Down

This file was deleted.

19 changes: 19 additions & 0 deletions Source/Machine.Fakes.Adapters.Moq/Machine.Fakes.Adapters.Moq.xproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?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)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>ab44677e-879d-4cdc-bdfc-522d4ab973e2</ProjectGuid>
<RootNamespace>Machine.Fakes.Adapters.Moq</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
</PropertyGroup>

<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
7 changes: 7 additions & 0 deletions Source/Machine.Fakes.Adapters.Moq/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
using System.Reflection;

[assembly: AssemblyTitle("Machine.Fakes.Adapters.Moq")]
[assembly: AssemblyVersion("0.2.7.0")]
[assembly: AssemblyDescription("An integration layer for fake frameworks on top of MSpec")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCopyrightAttribute("2011 - 2014 Bjoern Rochel, Steffen Forkmann, Simon Hohenadl et al.")]
4 changes: 0 additions & 4 deletions Source/Machine.Fakes.Adapters.Moq/packages.config

This file was deleted.

2 changes: 1 addition & 1 deletion Source/Machine.Fakes.Adapters.Moq/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"iconUrl": "https://github.com/machine/machine.fakes/raw/master/machine.fakes-128x128.png",
"tags": [ "tdd", "bdd", "testing", "unittest", "fakes", "mocks", "mspec", "mfakes" ],
"requireLicenseAcceptance": false,
"releaseNotes": "See https://github.com/machine/machine.fakes/blob/master/changelog.markdown"
"releaseNotes": "See https://github.com/machine/machine.fakes/releases"
},
"description": "Machine.Fakes attempts to simplify the usage of such frameworks on top of Machine.Specifications by helping to reduce a lot of the typical fake framwork related clutter code in specifications. If you choose so, Machine.Fakes even helps you to stay mostly independent of a concrete fake framework by providing a little wrapper API and a provider model for fake frameworks. ",
"authors": [
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?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)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>6d31f909-eacc-43a1-be04-d8df66596b2d</ProjectGuid>
<RootNamespace>Machine.Fakes.Adapters.NSubstitute</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
</PropertyGroup>

<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
using System.Reflection;

[assembly: AssemblyTitle("Machine.Fakes.Adapters.NSubstitute")]
[assembly: AssemblyVersion("0.2.7.0")]
[assembly: AssemblyDescription("An integration layer for fake frameworks on top of MSpec")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCopyrightAttribute("2011 - 2014 Bjoern Rochel, Steffen Forkmann, Simon Hohenadl et al.")]
4 changes: 0 additions & 4 deletions Source/Machine.Fakes.Adapters.NSubstitute/packages.config

This file was deleted.

2 changes: 1 addition & 1 deletion Source/Machine.Fakes.Adapters.NSubstitute/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"iconUrl": "https://github.com/machine/machine.fakes/raw/master/machine.fakes-128x128.png",
"tags": [ "tdd", "bdd", "testing", "unittest", "fakes", "mocks", "mspec", "mfakes" ],
"requireLicenseAcceptance": false,
"releaseNotes": "See https://github.com/machine/machine.fakes/blob/master/changelog.markdown"
"releaseNotes": "See https://github.com/machine/machine.fakes/releases"
},
"description": "Machine.Fakes attempts to simplify the usage of such frameworks on top of Machine.Specifications by helping to reduce a lot of the typical fake framwork related clutter code in specifications. If you choose so, Machine.Fakes even helps you to stay mostly independent of a concrete fake framework by providing a little wrapper API and a provider model for fake frameworks. ",
"authors": [
Expand Down
Loading

0 comments on commit 54d9e36

Please sign in to comment.