summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-01-24 00:19:49 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-01-29 10:38:39 -0800
commitf1fa342808d2b40d3380b30a3b48dc65ea93c9d4 (patch)
treed6bb06e66324c4a1b6cd2c6fe3a342a8767b4cb9 /src
parentaf677bf167c52727f8e0d38c5939a42eb4b32e15 (diff)
downloadDotNetOpenAuth-f1fa342808d2b40d3380b30a3b48dc65ea93c9d4.zip
DotNetOpenAuth-f1fa342808d2b40d3380b30a3b48dc65ea93c9d4.tar.gz
DotNetOpenAuth-f1fa342808d2b40d3380b30a3b48dc65ea93c9d4.tar.bz2
NuGet symbol packages are also created now.
Fixes #60
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth.BuildTasks/NuGetPack.cs8
-rw-r--r--src/DotNetOpenAuth.sln1
2 files changed, 8 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.BuildTasks/NuGetPack.cs b/src/DotNetOpenAuth.BuildTasks/NuGetPack.cs
index 1b13ad2..91365e5 100644
--- a/src/DotNetOpenAuth.BuildTasks/NuGetPack.cs
+++ b/src/DotNetOpenAuth.BuildTasks/NuGetPack.cs
@@ -40,6 +40,11 @@ namespace DotNetOpenAuth.BuildTasks {
public string Properties { get; set; }
/// <summary>
+ /// Gets or sets a value indicating whether to generate a symbols nuget package.
+ /// </summary>
+ public bool Symbols { get; set; }
+
+ /// <summary>
/// Returns the fully qualified path to the executable file.
/// </summary>
/// <returns>
@@ -86,6 +91,9 @@ namespace DotNetOpenAuth.BuildTasks {
args.AppendSwitchIfNotNull("-BasePath ", this.BaseDirectory);
args.AppendSwitchIfNotNull("-OutputDirectory ", this.OutputPackageDirectory);
args.AppendSwitchIfNotNull("-Properties ", this.Properties);
+ if (this.Symbols) {
+ args.AppendSwitch("-Symbols");
+ }
return args.ToString();
}
diff --git a/src/DotNetOpenAuth.sln b/src/DotNetOpenAuth.sln
index b7a2b39..505ce7e 100644
--- a/src/DotNetOpenAuth.sln
+++ b/src/DotNetOpenAuth.sln
@@ -9,7 +9,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\doc\README.Bin.html = ..\doc\README.Bin.html
..\doc\README.html = ..\doc\README.html
..\samples\README.html = ..\samples\README.html
- ..\nuget\content\web.config.transform = ..\nuget\content\web.config.transform
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Specs", "Specs", "{CD57219F-24F4-4136-8741-6063D0D7A031}"