diff --git a/BuildTools/Automated.proj b/BuildTools/Automated.proj new file mode 100644 index 0000000000..260c01cd9d --- /dev/null +++ b/BuildTools/Automated.proj @@ -0,0 +1,121 @@ + + + + + + $(MSBuildProjectDirectory)\.. + + $(ProjectDir)\ILSpy\bin\Release + $(ProjectDir)\BuildTools\MSBuildCommunityTasks + ILSpy_ + + + + + "$(MSBuildBinPath)\..\v4.0.30319\msbuild.exe" + /p:Configuration=Release "/p:Platform=Any CPU" + $(BuildProperties) "/p:BranchName=$(BranchName)" + $(BuildProperties) $(AdditionalBuildProperties) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/BuildTools/MSBuildCommunityTasks/ICSharpCode.SharpZipLib.dll b/BuildTools/MSBuildCommunityTasks/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000000..77bafe8ba8 Binary files /dev/null and b/BuildTools/MSBuildCommunityTasks/ICSharpCode.SharpZipLib.dll differ diff --git a/BuildTools/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets b/BuildTools/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets new file mode 100644 index 0000000000..e7a20e5cb1 --- /dev/null +++ b/BuildTools/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets @@ -0,0 +1,73 @@ + + + + + + $(MSBuildExtensionsPath)\MSBuildCommunityTasks + $(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/BuildTools/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll b/BuildTools/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll new file mode 100644 index 0000000000..16a02d8b9b Binary files /dev/null and b/BuildTools/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll differ diff --git a/BuildTools/MSBuildCommunityTasks/Sample.proj b/BuildTools/MSBuildCommunityTasks/Sample.proj new file mode 100644 index 0000000000..3b52ad68c9 --- /dev/null +++ b/BuildTools/MSBuildCommunityTasks/Sample.proj @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + list = new List(); + list.Add("Happy"); + list.Add("New"); + list.Add("Year"); + Console.WriteLine("Hello MSBuild Community Scripting World."); + foreach(string s in list) + { + Console.WriteLine(s); + } + } + ]]> + + + + +