-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from cake-contrib/cake-recipe
Migrate to Cake.Recipe
- Loading branch information
Showing
8 changed files
with
122 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,5 @@ xtc-email | |
*.user | ||
|
||
#Cake | ||
[Tt]ools/ | ||
[Tt]ools/ | ||
BuildArtifacts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{19A394EA-534B-4426-BAF4-F18DEE9C88EC}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Cake.FileHelpers.Tests</RootNamespace> | ||
<AssemblyName>Cake.FileHelpers.Tests</AssemblyName> | ||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<TargetFramework>netcoreapp1.1</TargetFramework> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Fakes\FakeCakeArguments.cs" /> | ||
<Compile Include="Fakes\FakeCakeContext.cs" /> | ||
<Compile Include="Fakes\FakeLog.cs" /> | ||
<Compile Include="FileHelperTests.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Cake.FileHelpers\Cake.FileHelpers.csproj"> | ||
<Project>{a5cf4e50-0bf9-4fd6-8c2a-46e481b39c9f}</Project> | ||
<Name>Cake.FileHelpers</Name> | ||
</ProjectReference> | ||
<PackageReference Include="Cake.Core" Version="0.22.0" /> | ||
<PackageReference Include="Cake.Testing" Version="0.22.0" /> | ||
<PackageReference Include="xunit" Version="2.3.0-beta5-build3769" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta5-build3769" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> | ||
<ProjectReference Include="..\Cake.FileHelpers\Cake.FileHelpers.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Cake.Core" Version="0.22.0" /> | ||
<PackageReference Include="Cake.Testing" Version="0.22.0" /> | ||
<PackageReference Include="NUnit" Version="3.8.1" /> | ||
<Folder Include="Properties\" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</Project> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Cake. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
using System.Reflection; | ||
|
||
[assembly: AssemblyCompany("Cake Contributions")] | ||
[assembly: AssemblyProduct("Cake.FileHelpers")] | ||
[assembly: AssemblyVersion("0.0.0")] | ||
[assembly: AssemblyFileVersion("0.0.0")] | ||
[assembly: AssemblyInformationalVersion("0.0.0")] | ||
[assembly: AssemblyCopyright("Copyright © Cake Contributions 2017 - Present")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,26 @@ | ||
image: Visual Studio 2017 | ||
version: 2.0.{build} | ||
configuration: Release | ||
install: | ||
- set NUGET_VERSION=%APPVEYOR_BUILD_VERSION% | ||
#---------------------------------# | ||
# Build Script # | ||
#---------------------------------# | ||
build_script: | ||
- ps: .\build.ps1 -Target package | ||
test: | ||
assemblies: | ||
- '**\*.Tests.dll' | ||
artifacts: | ||
- path: Cake.FileHelpers\bin\Release\*.nupkg | ||
name: NuGet | ||
- ps: .\build.ps1 -Script setup.cake -Target AppVeyor -Verbosity Diagnostic --settings_skipverification=true | ||
|
||
# Tests | ||
test: off | ||
|
||
#---------------------------------# | ||
# Branches to build # | ||
#---------------------------------# | ||
branches: | ||
# Whitelist | ||
only: | ||
- develop | ||
- master | ||
- /release/.*/ | ||
- /hotfix/.*/ | ||
|
||
#---------------------------------# | ||
# Build Cache # | ||
#---------------------------------# | ||
#cache: | ||
#- packages -> Source\**\packages.config | ||
#- tools -> setup.cake |
Oops, something went wrong.