File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,15 @@ az group create \
2525echo " Creating Application Service Plan..." ;
2626az appservice plan create \
2727 -g $resourceGroup \
28- -n " linux-plan" \
29- --sku B1 \
30- --is-linux
28+ -n " windows-plan" \
29+ --sku B1
3130
3231echo " Creating Web Application..." ;
3332az webapp create \
3433 -g $resourceGroup \
3534 -n $appName \
36- --plan " linux -plan" \
37- --runtime " DOTNETCORE|3.0 " \
35+ --plan " windows -plan" \
36+ --runtime " DOTNETCORE|3.1 " \
3837 --deployment-source-url $gitSource \
3938 --deployment-source-branch master
4039
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22
33 <PropertyGroup >
4- <TargetFramework >netcoreapp3.0 </TargetFramework >
4+ <TargetFramework >netcoreapp3.1 </TargetFramework >
55 <RootNamespace >AzureSamples.AzureSQL</RootNamespace >
66 </PropertyGroup >
77
8- <ItemGroup >
9- </ItemGroup >
10-
118 <ItemGroup >
129 <PackageReference Include =" Dapper" Version =" 2.0.30" />
1310 <PackageReference Include =" Microsoft.Data.SqlClient" Version =" 1.1.0" />
You can’t perform that action at this time.
0 commit comments