Skip to content
This repository was archived by the owner on Aug 23, 2019. It is now read-only.

Commit 6269119

Browse files
authored
Merge pull request #13 from machine/iz-drop-teamcity-rakebuild
Replace TeamCity+Rake build with AppVeyor
2 parents 1f22bbb + f9c2953 commit 6269119

33 files changed

+161
-470
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,5 @@ Backup*/
108108
UpgradeLog*.XML
109109
Distribution/
110110
Specs/
111+
112+
.vscode/

Example.BindingFailure.Ref/Example.BindingFailure.Ref.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
<BootstrapperEnabled>true</BootstrapperEnabled>
3434
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
3535
<RestorePackages>true</RestorePackages>
36+
<NuGetPackageImportStamp>
37+
</NuGetPackageImportStamp>
3638
</PropertyGroup>
3739
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3840
<DebugSymbols>true</DebugSymbols>
@@ -81,13 +83,7 @@
8183
<Install>true</Install>
8284
</BootstrapperPackage>
8385
</ItemGroup>
84-
<ItemGroup>
85-
<None Include="packages.config">
86-
<SubType>Designer</SubType>
87-
</None>
88-
</ItemGroup>
8986
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
90-
<Import Project="..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets" Condition="Exists('..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets')" />
9187
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
9288
Other similar extension points exist, see Microsoft.Common.targets.
9389
<Target Name="BeforeBuild">

Example.BindingFailure.Ref/packages.config

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

Example.Failing/Example.Failing.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
<BootstrapperEnabled>true</BootstrapperEnabled>
3434
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
3535
<RestorePackages>true</RestorePackages>
36+
<NuGetPackageImportStamp>
37+
</NuGetPackageImportStamp>
3638
</PropertyGroup>
3739
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3840
<DebugSymbols>true</DebugSymbols>
@@ -54,11 +56,15 @@
5456
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
5557
</PropertyGroup>
5658
<ItemGroup>
57-
<Reference Include="Machine.Specifications">
58-
<HintPath>..\packages\Machine.Specifications.0.9.0-Unstable0074\lib\net20\Machine.Specifications.dll</HintPath>
59+
<Reference Include="Machine.Specifications, Version=0.11.0.0, Culture=neutral, processorArchitecture=MSIL">
60+
<HintPath>..\packages\Machine.Specifications.0.11.0\lib\net35\Machine.Specifications.dll</HintPath>
61+
<Private>True</Private>
5962
</Reference>
6063
<Reference Include="System" />
6164
<Reference Include="System.Core" />
65+
<Reference Include="System.Runtime.Remoting" />
66+
<Reference Include="System.Xml" />
67+
<Reference Include="System.Xml.Linq" />
6268
</ItemGroup>
6369
<ItemGroup>
6470
<Compile Include="..\SharedAssemblyInfo.cs">
@@ -94,7 +100,6 @@
94100
<None Include="packages.config" />
95101
</ItemGroup>
96102
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
97-
<Import Project="..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets" Condition="Exists('..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets')" />
98103
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
99104
Other similar extension points exist, see Microsoft.Common.targets.
100105
<Target Name="BeforeBuild">

Example.Failing/packages.config

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="GitFlowVersionTask" version="0.14.0" targetFramework="net35" />
4-
<package id="Machine.Specifications" version="0.9.0-Unstable0074" targetFramework="net35" />
3+
<package id="Machine.Specifications" version="0.11.0" targetFramework="net35" />
54
</packages>

Example.Issue157-Fail/Example.Issue157-Fail.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<AssemblyName>Example.Issue157-Fail</AssemblyName>
1313
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
15+
<NuGetPackageImportStamp>
16+
</NuGetPackageImportStamp>
1517
</PropertyGroup>
1618
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1719
<DebugSymbols>true</DebugSymbols>
@@ -31,11 +33,15 @@
3133
<WarningLevel>4</WarningLevel>
3234
</PropertyGroup>
3335
<ItemGroup>
34-
<Reference Include="Machine.Specifications">
35-
<HintPath>..\packages\Machine.Specifications.0.9.0-Unstable0074\lib\net20\Machine.Specifications.dll</HintPath>
36+
<Reference Include="Machine.Specifications, Version=0.11.0.0, Culture=neutral, processorArchitecture=MSIL">
37+
<HintPath>..\packages\Machine.Specifications.0.11.0\lib\net35\Machine.Specifications.dll</HintPath>
38+
<Private>True</Private>
3639
</Reference>
3740
<Reference Include="System" />
3841
<Reference Include="System.Core" />
42+
<Reference Include="System.Runtime.Remoting" />
43+
<Reference Include="System.Xml" />
44+
<Reference Include="System.Xml.Linq" />
3945
</ItemGroup>
4046
<ItemGroup>
4147
<Compile Include="..\SharedAssemblyInfo.cs">
@@ -48,7 +54,6 @@
4854
<None Include="packages.config" />
4955
</ItemGroup>
5056
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
51-
<Import Project="..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets" Condition="Exists('..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets')" />
5257
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5358
Other similar extension points exist, see Microsoft.Common.targets.
5459
<Target Name="BeforeBuild">
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="GitFlowVersionTask" version="0.14.0" targetFramework="net35" />
4-
<package id="Machine.Specifications" version="0.9.0-Unstable0074" targetFramework="net35" />
3+
<package id="Machine.Specifications" version="0.11.0" targetFramework="net35" />
54
</packages>

Example.Issue157-Success/Example.Issue157-Success.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<AssemblyName>Example.Issue157-Success</AssemblyName>
1313
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
15+
<NuGetPackageImportStamp>
16+
</NuGetPackageImportStamp>
1517
</PropertyGroup>
1618
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1719
<DebugSymbols>true</DebugSymbols>
@@ -31,11 +33,15 @@
3133
<WarningLevel>4</WarningLevel>
3234
</PropertyGroup>
3335
<ItemGroup>
34-
<Reference Include="Machine.Specifications">
35-
<HintPath>..\packages\Machine.Specifications.0.9.0-Unstable0074\lib\net20\Machine.Specifications.dll</HintPath>
36+
<Reference Include="Machine.Specifications, Version=0.11.0.0, Culture=neutral, processorArchitecture=MSIL">
37+
<HintPath>..\packages\Machine.Specifications.0.11.0\lib\net35\Machine.Specifications.dll</HintPath>
38+
<Private>True</Private>
3639
</Reference>
3740
<Reference Include="System" />
3841
<Reference Include="System.Core" />
42+
<Reference Include="System.Runtime.Remoting" />
43+
<Reference Include="System.Xml" />
44+
<Reference Include="System.Xml.Linq" />
3945
</ItemGroup>
4046
<ItemGroup>
4147
<Compile Include="..\SharedAssemblyInfo.cs">
@@ -48,7 +54,6 @@
4854
<None Include="packages.config" />
4955
</ItemGroup>
5056
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
51-
<Import Project="..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets" Condition="Exists('..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets')" />
5257
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5358
Other similar extension points exist, see Microsoft.Common.targets.
5459
<Target Name="BeforeBuild">
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="GitFlowVersionTask" version="0.14.0" targetFramework="net35" />
4-
<package id="Machine.Specifications" version="0.9.0-Unstable0074" targetFramework="net35" />
3+
<package id="Machine.Specifications" version="0.11.0" targetFramework="net35" />
54
</packages>

Example.UsingExternalFile/Example.UsingExternalFile.csproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
<FileAlignment>512</FileAlignment>
1515
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
1616
<RestorePackages>true</RestorePackages>
17+
<NuGetPackageImportStamp>
18+
</NuGetPackageImportStamp>
1719
</PropertyGroup>
1820
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1921
<DebugSymbols>true</DebugSymbols>
@@ -38,12 +40,14 @@
3840
<Reference Include="FluentAssertions">
3941
<HintPath>..\packages\FluentAssertions.2.2.0.0\lib\net35\FluentAssertions.dll</HintPath>
4042
</Reference>
41-
<Reference Include="Machine.Specifications">
42-
<HintPath>..\packages\Machine.Specifications.0.9.0-Unstable0074\lib\net20\Machine.Specifications.dll</HintPath>
43+
<Reference Include="Machine.Specifications, Version=0.11.0.0, Culture=neutral, processorArchitecture=MSIL">
44+
<HintPath>..\packages\Machine.Specifications.0.11.0\lib\net35\Machine.Specifications.dll</HintPath>
45+
<Private>True</Private>
4346
</Reference>
4447
<Reference Include="System" />
4548
<Reference Include="System.Configuration" />
4649
<Reference Include="System.Core" />
50+
<Reference Include="System.Runtime.Remoting" />
4751
<Reference Include="System.XML" />
4852
<Reference Include="System.Xml.Linq" />
4953
</ItemGroup>
@@ -65,7 +69,6 @@
6569
<None Include="packages.config" />
6670
</ItemGroup>
6771
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
68-
<Import Project="..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets" Condition="Exists('..\packages\GitFlowVersionTask.0.14.0\Build\GitFlowVersionTask.targets')" />
6972
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7073
Other similar extension points exist, see Microsoft.Common.targets.
7174
<Target Name="BeforeBuild">

0 commit comments

Comments
 (0)