blob: 9ba94eb430acea0dc6963c9dc43e29954d475c64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//-----------------------------------------------------------------------
// <copyright file="SnToolTask.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.BuildTasks {
using System;
using System.IO;
using Microsoft.Build.Utilities;
public abstract class SnToolTask : ToolTask {
/// <summary>
/// Gets the name of the tool.
/// </summary>
/// <value>The name of the tool.</value>
protected override string ToolName {
get { return "sn.exe"; }
}
/// <summary>
/// Generates the full path to tool.
/// </summary>
protected override string GenerateFullPathToTool() {
return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), @"Microsoft SDKs\Windows\v6.0A\bin\" + this.ToolName);
}
}
}
|