Skip to content

Commit c1ddd13

Browse files
committed
Change to Self-Contained Deployment
- Upgrade to dotnet 3.1
1 parent 4856d1f commit c1ddd13

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "3.0.101"
3+
"version": "3.1.100"
44
}
55
}
Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
<PublishTrimmed>true</PublishTrimmed>
7+
<PublishReadyToRun>true</PublishReadyToRun>
8+
<PublishSingleFile>true</PublishSingleFile>
9+
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
510
<IsPackable>true</IsPackable>
611
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
712
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
@@ -12,9 +17,9 @@
1217
</PropertyGroup>
1318

1419
<ItemGroup>
15-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0" />
20+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.0" />
1621
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.3.1" />
17-
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="3.0.0" />
22+
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="3.1.0" />
1823
</ItemGroup>
1924

2025
</Project>

0 commit comments

Comments
 (0)