|
Revision 11, 469 bytes
(checked in by brennan, 11 months ago)
|
added msbuild task as well as icons for installer
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="utf-8" ?> |
|---|
| 2 |
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|---|
| 3 |
|
|---|
| 4 |
<PropertyGroup> |
|---|
| 5 |
<MSBuildTidyPath Condition="'$(MSBuildTidyPath)' == ''">$(MSBuildExtensionsPath)\SmallSharpTools.Tidy</MSBuildTidyPath> |
|---|
| 6 |
<MSBuildTidyLib>$(MSBuildTidyPath)\SmallSharpTools.Tidy.dll</MSBuildTidyLib> |
|---|
| 7 |
</PropertyGroup> |
|---|
| 8 |
|
|---|
| 9 |
<UsingTask AssemblyFile="$(MSBuildTidyLib)" TaskName="SmallSharpTools.Tidy.MSBuild.Tidy" /> |
|---|
| 10 |
|
|---|
| 11 |
</Project> |
|---|