Build.cake changes.
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -259,3 +259,7 @@ paket-files/
|
|||||||
# Python Tools for Visual Studio (PTVS)
|
# Python Tools for Visual Studio (PTVS)
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
||||||
|
.dotnet/
|
||||||
|
tools/
|
||||||
|
nupkg/
|
||||||
@@ -13,6 +13,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AntiSamy.Tests", "test\Anti
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{6AE9E6A9-4CC1-40C7-A858-5A2E6635E207}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{6AE9E6A9-4CC1-40C7-A858-5A2E6635E207}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
|
.gitignore = .gitignore
|
||||||
appveyor.yml = appveyor.yml
|
appveyor.yml = appveyor.yml
|
||||||
build.cake = build.cake
|
build.cake = build.cake
|
||||||
build.ps1 = build.ps1
|
build.ps1 = build.ps1
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#tool "nuget:?package=xunit.runner.console&version=2.3.0-beta4-build3742"
|
#tool "nuget:?package=xunit.runner.console&version=2.3.0-beta4-build3742"
|
||||||
|
|
||||||
#addin "nuget:?package=NuGet.Core"
|
#addin "nuget:?package=NuGet.Core"
|
||||||
#addin "nuget:?package=Cake.ExtendedNuGet"
|
#addin "nuget:?package=Cake.ExtendedNuGet"
|
||||||
@@ -25,7 +25,7 @@ var testProjects = new List<Tuple<string, string[]>>
|
|||||||
|
|
||||||
|
|
||||||
var nupkgPath = "nupkg";
|
var nupkgPath = "nupkg";
|
||||||
var nupkgRegex = $"**/{projectName}*.nupkg";
|
var nupkgRegex = $"**/AntiSamy*.nupkg";
|
||||||
var nugetPath = toolpath + "/nuget.exe";
|
var nugetPath = toolpath + "/nuget.exe";
|
||||||
var nugetQueryUrl = "https://www.nuget.org/api/v2/";
|
var nugetQueryUrl = "https://www.nuget.org/api/v2/";
|
||||||
var nugetPushUrl = "https://www.nuget.org/api/v2/package";
|
var nugetPushUrl = "https://www.nuget.org/api/v2/package";
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
|
<Authors>Caner Patır</Authors>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user