forked from Azure/azure-functions-openapi-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.InProc.csproj
48 lines (40 loc) · 1.96 KB
/
Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.InProc.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<AssemblyName>Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.InProc</AssemblyName>
<RootNamespace>Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.InProc</RootNamespace>
</PropertyGroup>
<!-- Uncomment this block if you want to use NuGet package from https://nuget.org -->
<!--<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.OpenApi" Version="1.5.0" />
</ItemGroup>-->
<!-- Uncomment this block if you want to use NuGet package from https://nuget.org -->
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.1.3" />
</ItemGroup>
<!-- Comment this block if you want to use NuGet package from https://nuget.org -->
<ItemGroup>
<ProjectReference Include="..\..\src\Microsoft.Azure.WebJobs.Extensions.OpenApi\Microsoft.Azure.WebJobs.Extensions.OpenApi.csproj" />
</ItemGroup>
<!-- Comment this block if you want to use NuGet package from https://nuget.org -->
<ItemGroup>
<ProjectReference Include="..\Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.Models\Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.Models.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
<!-- Uncomment this block if you want to use custom UI -->
<!--<ItemGroup>
<EmbeddedResource Include="dist\my-custom.css" />
<EmbeddedResource Include="dist\my-custom.js" />
</ItemGroup>-->
<!-- Uncomment this block if you want to use custom UI -->
</Project>