This file contains hidden or 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
<ItemGroup> | |
<ImageAsset Include="Media.xcassets\AppIcon.appiconset\iPad-76x76%402x.png"> | |
<Visible>false</Visible> | |
</ImageAsset> | |
... | |
</ItemGroup> |
This file contains hidden or 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
public partial class Application : UIApplicationDelegate | |
{ | |
... | |
} |
This file contains hidden or 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
Frame rootFrame = Windows.UI.Xaml.Window.Current.Content as Frame; |
This file contains hidden or 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
Frame rootFrame = Window.Current.Content as Frame; |
This file contains hidden or 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
steps: | |
- task: AzureFileCopy@2 | |
displayName: 'Copy wwwroot to Azure Storage' | |
inputs: | |
SourcePath: '$(System.DefaultWorkingDirectory)/_develop-build/extracted/wwwroot' | |
azureSubscription: '???' | |
Destination: AzureBlob | |
storage: myappstorage | |
ContainerName: wwwroot |
This file contains hidden or 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
steps: | |
- task: CarlosJimenezDelgado.cc987470-973e-11e8-9d81-056301492f56.AzureStorageContainer.azurestoragecontainer@0 | |
displayName: 'Create wwwroot container with public read access on Azure Storage' | |
inputs: | |
ConnectedServiceName: '???' | |
StorageName: myappstorage | |
ContainerName: wwwroot | |
ContainerPublicAccessLevel: Blob | |
ContinueOnExistence: true |
This file contains hidden or 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
steps: | |
- task: ExtractFiles@1 | |
displayName: 'Extract files' | |
inputs: | |
archiveFilePatterns: '$(System.DefaultWorkingDirectory)/**/*.zip' | |
destinationFolder: '$(System.DefaultWorkingDirectory)/_develop-build/extracted' |
This file contains hidden or 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
dotnet new sln -n CustomName |
This file contains hidden or 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
dotnet new sln |
This file contains hidden or 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 modeMember = bindNode.Members | |
.FirstOrDefault(m => m.Member.Name == "Mode")?.Value?.ToString() ?? GetDefaultBindMode(); |