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 \
25
25
echo " Creating Application Service Plan..." ;
26
26
az appservice plan create \
27
27
-g $resourceGroup \
28
- -n " linux-plan" \
29
- --sku B1 \
30
- --is-linux
28
+ -n " windows-plan" \
29
+ --sku B1
31
30
32
31
echo " Creating Web Application..." ;
33
32
az webapp create \
34
33
-g $resourceGroup \
35
34
-n $appName \
36
- --plan " linux -plan" \
37
- --runtime " DOTNETCORE|3.0 " \
35
+ --plan " windows -plan" \
36
+ --runtime " DOTNETCORE|3.1 " \
38
37
--deployment-source-url $gitSource \
39
38
--deployment-source-branch master
40
39
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netcoreapp3.0 </TargetFramework >
4
+ <TargetFramework >netcoreapp3.1 </TargetFramework >
5
5
<RootNamespace >AzureSamples.AzureSQL</RootNamespace >
6
6
</PropertyGroup >
7
7
8
- <ItemGroup >
9
- </ItemGroup >
10
-
11
8
<ItemGroup >
12
9
<PackageReference Include =" Dapper" Version =" 2.0.30" />
13
10
<PackageReference Include =" Microsoft.Data.SqlClient" Version =" 1.1.0" />
You can’t perform that action at this time.
0 commit comments