-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented embeded encoder assembly resource
- Loading branch information
Frank Odoom
committed
Sep 10, 2021
1 parent
83050c8
commit 5fdbf29
Showing
53 changed files
with
1,033 additions
and
2,023 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
22 changes: 22 additions & 0 deletions
22
client/web/Properties/PublishProfiles/crosslibwebp - Zip Deploy.pubxml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
This file is used by the publish/package process of your Web project. You can customize the behavior of this process | ||
by editing this MSBuild file. In order to learn more about this please visit https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<WebPublishMethod>ZipDeploy</WebPublishMethod> | ||
<IsLinux>true</IsLinux> | ||
<ResourceId>/subscriptions/16d19ae7-d3c5-41d2-b93d-799fb42ef567/resourceGroups/labs/providers/Microsoft.Web/sites/crosslibwebp</ResourceId> | ||
<ResourceGroup>labs</ResourceGroup> | ||
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish> | ||
<SiteUrlToLaunchAfterPublish>http://crosslibwebp.azurewebsites.net</SiteUrlToLaunchAfterPublish> | ||
<PublishProvider>AzureWebSite</PublishProvider> | ||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration> | ||
<LastUsedPlatform>Any CPU</LastUsedPlatform> | ||
<ProjectGuid>6a322781-0186-40dd-8d33-c0eb4ac1b31a</ProjectGuid> | ||
<PublishUrl>https://crosslibwebp.scm.azurewebsites.net/</PublishUrl> | ||
<UserName>$crosslibwebp</UserName> | ||
<_SavePWD>True</_SavePWD> | ||
</PropertyGroup> | ||
</Project> |
174 changes: 174 additions & 0 deletions
174
client/web/Properties/ServiceDependencies/crosslibwebp - Zip Deploy/profile.arm.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"metadata": { | ||
"_dependencyType": "function.linux.appService" | ||
}, | ||
"parameters": { | ||
"resourceGroupName": { | ||
"type": "string", | ||
"defaultValue": "labs", | ||
"metadata": { | ||
"description": "Name of the resource group for the resource. It is recommended to put resources under same resource group for better tracking." | ||
} | ||
}, | ||
"resourceGroupLocation": { | ||
"type": "string", | ||
"defaultValue": "westeurope", | ||
"metadata": { | ||
"description": "Location of the resource group. Resource groups could have different location than resources, however by default we use API versions from latest hybrid profile which support all locations for resource types we support." | ||
} | ||
}, | ||
"resourceName": { | ||
"type": "string", | ||
"defaultValue": "crosslibwebp", | ||
"metadata": { | ||
"description": "Name of the main resource to be created by this template." | ||
} | ||
}, | ||
"resourceLocation": { | ||
"type": "string", | ||
"defaultValue": "[parameters('resourceGroupLocation')]", | ||
"metadata": { | ||
"description": "Location of the resource. By default use resource group's location, unless the resource provider is not supported there." | ||
} | ||
} | ||
}, | ||
"resources": [ | ||
{ | ||
"type": "Microsoft.Resources/resourceGroups", | ||
"name": "[parameters('resourceGroupName')]", | ||
"location": "[parameters('resourceGroupLocation')]", | ||
"apiVersion": "2019-10-01" | ||
}, | ||
{ | ||
"type": "Microsoft.Resources/deployments", | ||
"name": "[concat(parameters('resourceGroupName'), 'Deployment', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId)))]", | ||
"resourceGroup": "[parameters('resourceGroupName')]", | ||
"apiVersion": "2019-10-01", | ||
"dependsOn": [ | ||
"[parameters('resourceGroupName')]" | ||
], | ||
"properties": { | ||
"mode": "Incremental", | ||
"expressionEvaluationOptions": { | ||
"scope": "inner" | ||
}, | ||
"parameters": { | ||
"resourceGroupName": { | ||
"value": "[parameters('resourceGroupName')]" | ||
}, | ||
"resourceGroupLocation": { | ||
"value": "[parameters('resourceGroupLocation')]" | ||
}, | ||
"resourceName": { | ||
"value": "[parameters('resourceName')]" | ||
}, | ||
"resourceLocation": { | ||
"value": "[parameters('resourceLocation')]" | ||
} | ||
}, | ||
"template": { | ||
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"resourceGroupName": { | ||
"type": "string" | ||
}, | ||
"resourceGroupLocation": { | ||
"type": "string" | ||
}, | ||
"resourceName": { | ||
"type": "string" | ||
}, | ||
"resourceLocation": { | ||
"type": "string" | ||
} | ||
}, | ||
"variables": { | ||
"storage_name": "[toLower(concat('storage', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId))))]", | ||
"appServicePlan_name": "[concat('Plan', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId)))]", | ||
"storage_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Storage/storageAccounts/', variables('storage_name'))]", | ||
"appServicePlan_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Web/serverFarms/', variables('appServicePlan_name'))]", | ||
"function_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Web/sites/', parameters('resourceName'))]" | ||
}, | ||
"resources": [ | ||
{ | ||
"location": "[parameters('resourceLocation')]", | ||
"name": "[parameters('resourceName')]", | ||
"type": "Microsoft.Web/sites", | ||
"apiVersion": "2015-08-01", | ||
"tags": { | ||
"[concat('hidden-related:', variables('appServicePlan_ResourceId'))]": "empty" | ||
}, | ||
"dependsOn": [ | ||
"[variables('appServicePlan_ResourceId')]", | ||
"[variables('storage_ResourceId')]" | ||
], | ||
"kind": "functionapp", | ||
"properties": { | ||
"name": "[parameters('resourceName')]", | ||
"kind": "functionapp", | ||
"httpsOnly": true, | ||
"reserved": false, | ||
"serverFarmId": "[variables('appServicePlan_ResourceId')]", | ||
"siteConfig": { | ||
"alwaysOn": true, | ||
"linuxFxVersion": "dotnet|3.1" | ||
} | ||
}, | ||
"identity": { | ||
"type": "SystemAssigned" | ||
}, | ||
"resources": [ | ||
{ | ||
"name": "appsettings", | ||
"type": "config", | ||
"apiVersion": "2015-08-01", | ||
"dependsOn": [ | ||
"[variables('function_ResourceId')]" | ||
], | ||
"properties": { | ||
"AzureWebJobsDashboard": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storage_name'), ';AccountKey=', listKeys(variables('storage_ResourceId'), '2017-10-01').keys[0].value, ';EndpointSuffix=', 'core.windows.net')]", | ||
"AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storage_name'), ';AccountKey=', listKeys(variables('storage_ResourceId'), '2017-10-01').keys[0].value, ';EndpointSuffix=', 'core.windows.net')]", | ||
"FUNCTIONS_EXTENSION_VERSION": "~3", | ||
"FUNCTIONS_WORKER_RUNTIME": "dotnet" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"location": "[parameters('resourceGroupLocation')]", | ||
"name": "[variables('storage_name')]", | ||
"type": "Microsoft.Storage/storageAccounts", | ||
"apiVersion": "2017-10-01", | ||
"tags": { | ||
"[concat('hidden-related:', concat('/providers/Microsoft.Web/sites/', parameters('resourceName')))]": "empty" | ||
}, | ||
"properties": { | ||
"supportsHttpsTrafficOnly": true | ||
}, | ||
"sku": { | ||
"name": "Standard_LRS" | ||
}, | ||
"kind": "Storage" | ||
}, | ||
{ | ||
"location": "[parameters('resourceGroupLocation')]", | ||
"name": "[variables('appServicePlan_name')]", | ||
"type": "Microsoft.Web/serverFarms", | ||
"apiVersion": "2015-02-01", | ||
"kind": "linux", | ||
"properties": { | ||
"name": "[variables('appServicePlan_name')]", | ||
"sku": "Standard", | ||
"workerSizeId": "0", | ||
"reserved": true | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.