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.V2Static.csproj
48 lines (40 loc) · 2.08 KB
/
Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.V2Static.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>netcoreapp2.1</TargetFramework>
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
<AssemblyName>Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.V2Static</AssemblyName>
<RootNamespace>Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.V2Static</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="0.5.0-preview" />
</ItemGroup> -->
<!-- Uncomment this block if you want to use NuGet package from https://nuget.org -->
<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.28" />
</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>
<!-- Comment this block if you want to use NuGet package from https://nuget.org -->
<ItemGroup>
<Compile Include="..\..\templates\OpenApiEndpoints\IOpenApiHttpTriggerContext.cs" />
<Compile Include="..\..\templates\OpenApiEndpoints\OpenApiHttpTriggerContext.cs" />
<Compile Include="..\..\templates\OpenApiEndpoints\OpenApiHttpTrigger.cs" />
</ItemGroup>
<!-- Comment this block if you want to use NuGet package from https://nuget.org -->
</Project>