File tree 3 files changed +15
-8
lines changed
3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 15
15
//
16
16
// You can specify all the values or you can default the Revision and Build Numbers
17
17
// by using the '*' as shown below:
18
- [ assembly: AssemblyVersion ( "1.4.5 " ) ]
19
- [ assembly: AssemblyFileVersion ( "1.4.5 " ) ]
20
- [ assembly: AssemblyInformationalVersion ( "1.4.5-editlyalpha2" ) ]
18
+ [ assembly: AssemblyVersion ( "1.4.6 " ) ]
19
+ [ assembly: AssemblyFileVersion ( "1.4.6 " ) ]
20
+ // [assembly: AssemblyInformationalVersion("1.4.5-editlyalpha2")]
Original file line number Diff line number Diff line change 25
25
<ItemGroup >
26
26
<Libs Include =" $(BaseDir)\Griddly.Mvc\bin\$(Configuration)\Griddly.Mvc.dll" />
27
27
<Content Include =" $(BaseDir)\Griddly\**\griddly.js" />
28
- <Content Include =" $(BaseDir)\Griddly\**\griddly.css" />
29
- <Content Include =" $(BaseDir)\Griddly\**\Griddly\*.*" />
30
28
<Content Include =" $(BaseDir)\Griddly\**\editly.js" />
29
+ <Content Include =" $(BaseDir)\Griddly\**\griddly.css" />
30
+ <Content Include =" $(BaseDir)\Griddly\**\Views\Shared\Griddly\*.*" />
31
31
</ItemGroup >
32
32
33
33
<Exec Command =" rd $(PackageDir) /s /q" />
Original file line number Diff line number Diff line change @@ -5,9 +5,16 @@ $scriptpath = split-path -parent $MyInvocation.MyCommand.Path
5
5
msbuild $scriptpath / build.proj
6
6
7
7
Function Get-DropBox () {
8
- $hostFile = Join-Path (Split-Path (Get-ItemProperty HKCU:\Software\Dropbox).InstallPath) " host.db"
9
- $encodedPath = [System.Convert ]::FromBase64String((Get-Content $hostFile )[1 ])
10
- [System.Text.Encoding ]::UTF8.GetString($encodedPath )
8
+ if (Test-Path " $HOMEPATH \Dropbox" )
9
+ {
10
+ " $HOMEPATH \Dropbox"
11
+ }
12
+ else
13
+ {
14
+ $hostFile = Join-Path (Split-Path (Get-ItemProperty HKCU:\Software\Dropbox).InstallPath) " host.db"
15
+ $encodedPath = [System.Convert ]::FromBase64String((Get-Content $hostFile )[1 ])
16
+ [System.Text.Encoding ]::UTF8.GetString($encodedPath )
17
+ }
11
18
}
12
19
13
20
$dropbox = Get-DropBox
You can’t perform that action at this time.
0 commit comments