File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed
Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1+ # 0.6.0
2+
3+ - [ Refactoring] Updated and consolidated some package versions
4+ - [ Fix] The Scripty MSBuild task now runs "BeforeBuild" (#68 , thanks @reduckted )
5+ - [ Feature] Adds support for passing MSBuild project properties to Scripty (#66 , thanks @reduckted )
6+ - [ Feature] Adds a ` Debugging.md ` file to explain how to start with Scripty development (#65 , thanks @StingyJack )
7+
18# 0.5.0
29
310- [ Feature] CLI now accepts relative paths to project files
Original file line number Diff line number Diff line change @@ -273,8 +273,7 @@ Task("Package")
273273 . IsDependentOn ( "Test" ) ;
274274
275275Task ( "Test" )
276- . IsDependentOn ( "Run-Unit-Tests" )
277- . IsDependentOn ( "Test-MsBuild" ) ;
276+ . IsDependentOn ( "Run-Unit-Tests" ) ;
278277
279278Task ( "Default" )
280279 . IsDependentOn ( "Package" ) ;
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<PackageManifest Version =" 2.0.0" xmlns =" http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns : d =" http://schemas.microsoft.com/developer/vsx-schema-design/2011" >
33 <Metadata >
4- <Identity Id =" Scripty.CustomTool" Version =" 0.5 .0.0" Language =" en-US" Publisher =" Dave Glick" />
4+ <Identity Id =" Scripty.CustomTool" Version =" 0.6 .0.0" Language =" en-US" Publisher =" Dave Glick" />
55 <DisplayName >Scripty</DisplayName >
66 <Description xml : space =" preserve" >Runs Scripty as a custom tool.</Description >
77 <MoreInfo >https://github.com/daveaglick/Scripty</MoreInfo >
Original file line number Diff line number Diff line change 66using System . Reflection ;
77
88[ assembly: AssemblyProduct ( "Scripty" ) ]
9- [ assembly: AssemblyVersion ( "0.5 .0" ) ]
10- [ assembly: AssemblyFileVersion ( "0.5 .0" ) ]
11- [ assembly: AssemblyInformationalVersion ( "0.5 .0" ) ]
9+ [ assembly: AssemblyVersion ( "0.6 .0" ) ]
10+ [ assembly: AssemblyFileVersion ( "0.6 .0" ) ]
11+ [ assembly: AssemblyInformationalVersion ( "0.6 .0" ) ]
1212[ assembly: AssemblyCopyright ( "Copyright © Scripty Contributors" ) ]
1313
You can’t perform that action at this time.
0 commit comments