Skip to content

Commit 0d79fa8

Browse files
Update csproj
1 parent 6f7eb2e commit 0d79fa8

21 files changed

+121
-34
lines changed

SampleApi.csproj

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,31 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
1+
<Project Sdk="Microsoft.NET.Sdk">
32
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
5-
<Nullable>enable</Nullable>
3+
<TargetFramework>net8.0</TargetFramework>
4+
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
5+
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
78
</PropertyGroup>
8-
99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
11-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
10+
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="[2.0.0,)" />
11+
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="[3.2.0,)" />
12+
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.OpenApi" Version="[1.5.1,)" />
13+
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="[2.0.0,)" />
14+
<PackageReference Include="Microsoft.Data.SqlClient" Version="[5.2.2,)" />
15+
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="[8.3.0,)" />
16+
<PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="[1.2.2,)" />
17+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="[8.3.0,)" />
18+
</ItemGroup>
19+
<ItemGroup>
20+
<None Update="host.json">
21+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
22+
</None>
23+
<None Update="local.settings.json">
24+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
25+
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
26+
</None>
27+
</ItemGroup>
28+
<ItemGroup>
29+
<Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" />
1230
</ItemGroup>
13-
1431
</Project>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// <autogenerated />
2+
using System;
3+
using System.Reflection;
4+
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
10+
using System;
11+
using System.Reflection;
12+
13+
[assembly: System.Reflection.AssemblyCompanyAttribute("SampleApi")]
14+
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
15+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6f7eb2e48431f3189303249b3b74228cc43f877e")]
17+
[assembly: System.Reflection.AssemblyProductAttribute("SampleApi")]
18+
[assembly: System.Reflection.AssemblyTitleAttribute("SampleApi")]
19+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
20+
21+
// Generated by the MSBuild WriteCodeFragment class.
22+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
09e9acd8839aa7b2de0c6ec25f0cd9695312ad018f5a3d4a1cc7de541e35e6a6
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
is_global = true
2+
build_property.TargetFramework = net6.0
3+
build_property.TargetPlatformMinVersion =
4+
build_property.UsingMicrosoftNETSdkWeb = true
5+
build_property.ProjectTypeGuids =
6+
build_property.InvariantGlobalization =
7+
build_property.PlatformNeutralAssembly =
8+
build_property.EnforceExtendedAnalyzerRules =
9+
build_property._SupportedPlatformList = Linux,macOS,Windows
10+
build_property.RootNamespace = SampleApi
11+
build_property.RootNamespace = SampleApi
12+
build_property.ProjectDir = /Users/hariharanthavachelvam/Sites/Dependabot/Core/test/SampleApi/
13+
build_property.EnableComHosting =
14+
build_property.EnableGeneratedComInterfaceComImportInterop =
15+
build_property.RazorLangVersion = 6.0
16+
build_property.SupportLocalizedComponentNames =
17+
build_property.GenerateRazorMetadataSourceChecksumAttributes =
18+
build_property.MSBuildProjectDirectory = /Users/hariharanthavachelvam/Sites/Dependabot/Core/test/SampleApi
19+
build_property._RazorSourceGeneratorDebug =
20+
build_property.EffectiveAnalysisLevelStyle = 6.0
21+
build_property.EnableCodeStyleSeverity =
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// <auto-generated/>
2+
global using global::Microsoft.AspNetCore.Builder;
3+
global using global::Microsoft.AspNetCore.Hosting;
4+
global using global::Microsoft.AspNetCore.Http;
5+
global using global::Microsoft.AspNetCore.Routing;
6+
global using global::Microsoft.Extensions.Configuration;
7+
global using global::Microsoft.Extensions.DependencyInjection;
8+
global using global::Microsoft.Extensions.Hosting;
9+
global using global::Microsoft.Extensions.Logging;
10+
global using global::System;
11+
global using global::System.Collections.Generic;
12+
global using global::System.IO;
13+
global using global::System.Linq;
14+
global using global::System.Net.Http;
15+
global using global::System.Net.Http.Json;
16+
global using global::System.Threading;
17+
global using global::System.Threading.Tasks;

obj/Debug/net6.0/SampleApi.MvcApplicationPartsAssemblyInfo.cache

Whitespace-only changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
//
5+
// Changes to this file may cause incorrect behavior and will be lost if
6+
// the code is regenerated.
7+
// </auto-generated>
8+
//------------------------------------------------------------------------------
9+
10+
using System;
11+
using System.Reflection;
12+
13+
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
14+
15+
// Generated by the MSBuild WriteCodeFragment class.
16+
6.32 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)