This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
convert AppTile.png -resize "50x50>" Assets\StoreLogo.scale-100.png | |
convert AppTile.png -resize "30x30>" Assets\SmallLogo.scale-100.png | |
convert AppTile.png -resize "150x150>" Assets\Logo.scale-100.png | |
convert AppTile.png -resize "620x300>" -size 620x300 xc:transparent +swap -gravity center -composite Assets\SplashScreen.scale-100.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
convert AppTile.png -resize "691x336>" -size 691x336 xc:transparent +swap -gravity center -composite Assets\Tiles\FlipCycleTileLarge.png | |
convert AppTile.png -resize "336x336>" Assets\Tiles\FlipCycleTileMedium.png | |
convert AppTile.png -resize "159x159>" Assets\Tiles\FlipCycleTileSmall.png | |
convert AppTile.png -resize "134x202>" -size 134x202 xc:transparent +swap -gravity center -composite Assets\Tiles\IconicTileMediumLarge.png | |
convert AppTile.png -resize "71x110>" -size 71x110 xc:transparent +swap -gravity center -composite Assets\Tiles\IconicTileSmall.png | |
convert AppTile.png -resize "100x100>" Assets\Tiles\ApplicationIcon.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var context = TaskScheduler.FromCurrentSynchronizationContext(); | |
var task = Task.Factory.StartNew(() => | |
{ | |
TimeConsumingMethod(); | |
}); | |
task.ContinueWith(_ => | |
{ | |
myButton.IsEnabled = true; | |
}, | |
context); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var context = TaskScheduler.FromCurrentSynchronizationContext(); | |
TimeConsumingMethodAsync().ContinueWith(_ => | |
{ | |
myButton.IsEnabled = true; | |
}, | |
context); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@REM Windows Phone | |
inkscape.exe CumulusNotes.svg --export-png=Assets\Tiles\FlipCycleTileMedium.png -w336 -h336 | |
convert Assets\Tiles\FlipCycleTileMedium.png -resize "691x336>" -size 691x336 xc:transparent +swap -gravity center -composite Assets\Tiles\FlipCycleTileLarge.png | |
inkscape.exe CumulusNotes.svg --export-png=Assets\Tiles\FlipCycleTileSmall.png -w159 -w159 | |
inkscape.exe CumulusNotes.svg --export-png=Assets\Tiles\IconicTileMediumLarge.png -w134 -h134 | |
convert Assets\Tiles\IconicTileMediumLarge.png -resize "134x202>" -size 134x202 xc:transparent +swap -gravity center -composite Assets\Tiles\IconicTileMediumLarge.png | |
inkscape.exe CumulusNotes.svg --export-png=Assets\Tiles\IconicTileSmall.png -w71 -h71 | |
convert Assets\Tiles\IconicTileSmall.png -resize "71x110>" -size 71x110 xc:transparent +swap -gravity center -composite Assets\Tiles\IconicTileSmall.png | |
inkscape.exe CumulusNotes.svg --export-png=Assets\ApplicationIcon.png -w100 -h100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@REM Windows Phone | |
inkscape.exe CumulusNotes.svg --export-png=Assets\Tiles\FlipCycleTileMedium.png -w336 -h336 | |
convert Assets\Tiles\FlipCycleTileMedium.png -resize "691x336>" -size 691x336 xc:transparent +swap -gravity center -composite Assets\Tiles\FlipCycleTileLarge.png | |
inkscape.exe CumulusNotes.svg --export-png=Assets\Tiles\FlipCycleTileSmall.png -w159 -w159 | |
inkscape.exe CumulusNotes.svg --export-png=Assets\Tiles\IconicTileMediumLarge.png -w134 -h134 | |
convert Assets\Tiles\IconicTileMediumLarge.png -resize "134x202>" -size 134x202 xc:transparent +swap -gravity center -composite Assets\Tiles\IconicTileMediumLarge.png | |
inkscape.exe CumulusNotes.svg --export-png=Assets\Tiles\IconicTileSmall.png -w71 -h71 | |
convert Assets\Tiles\IconicTileSmall.png -resize "71x110>" -size 71x110 xc:transparent +swap -gravity center -composite Assets\Tiles\IconicTileSmall.png | |
inkscape.exe CumulusNotes.svg --export-png=Assets\ApplicationIcon.png -w100 -h100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@REM Windows Store | |
inkscape.exe CumulusNotes.svg --export-png=Assets\Logo.scale-100.png -w150 -h150 | |
inkscape.exe CumulusNotes.svg --export-png=Assets\StoreLogo.scale-100.png -w50 -h50 | |
inkscape.exe CumulusNotes.svg --export-png=Assets\SmallLogo.scale-100.png -w30 -h30 | |
inkscape.exe CumulusNotes.svg --export-png=Assets\SplashScreen.scale-100.png -w300 -h300 | |
convert Assets\SplashScreen.scale-100.png -resize "620x300>" -size 620x300 xc:transparent +swap -gravity center -composite Assets\SplashScreen.scale-100.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
del .git\refs\removes\origin\master | |
git fetch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Application.Resources> | |
<System:String x:Key="AppName">My Application</System:String> | |
</Application.Resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Application.Resources> | |
<x:String x:Key="AppName">My Application</x:String> | |
</Application.Resources> |
OlderNewer