-
Notifications
You must be signed in to change notification settings - Fork 481
Expand file tree
/
Copy pathWebJobs.Script.csproj
More file actions
72 lines (65 loc) · 3.39 KB
/
Copy pathWebJobs.Script.csproj
File metadata and controls
72 lines (65 loc) · 3.39 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<PackageId>Microsoft.Azure.WebJobs.Script</PackageId>
<AssemblyName>Microsoft.Azure.WebJobs.Script</AssemblyName>
<RootNamespace>Microsoft.Azure.WebJobs.Script</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Remove="FileProvisioning\PowerShell\profile.ps1" />
<None Remove="FileProvisioning\PowerShell\requirements.psd1" />
<None Remove="runtimeassemblies-relaxed.json" />
<None Remove="runtimeassemblies.json" />
<None Remove="runtimes.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="extensionrequirements.json" CopyToOutputDirectory="Never" />
<EmbeddedResource Include="FileProvisioning\PowerShell\profile.ps1" />
<EmbeddedResource Include="FileProvisioning\PowerShell\requirements.psd1" />
<EmbeddedResource Include="runtimeassemblies-relaxed.json" CopyToOutputDirectory="Never" />
<EmbeddedResource Include="runtimeassemblies.json" CopyToOutputDirectory="Never" />
<EmbeddedResource Include="runtimes.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Data.Tables" />
<PackageReference Include="Azure.Monitor.OpenTelemetry.Exporter" />
<PackageReference Include="Azure.Storage.Blobs" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" />
<PackageReference Include="Microsoft.Azure.WebJobs" />
<PackageReference Include="Microsoft.Azure.WebJobs.Host.Storage" />
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Timers.Storage" />
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" />
<PackageReference Include="Microsoft.Azure.WebJobs.Script.Abstractions" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" />
<PackageReference Include="Microsoft.Extensions.Azure" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" />
<PackageReference Include="Microsoft.Extensions.Telemetry.Abstractions" />
<PackageReference Include="NuGet.ProjectModel" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" />
<PackageReference Include="OpenTelemetry.Instrumentation.Process" />
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" />
<PackageReference Include="System.IO.Abstractions" NoWarn="NU1701" />
<PackageReference Include="System.Reactive.Linq" />
<PackageReference Include="System.Reactive.Core" />
<PackageReference Include="Yarp.ReverseProxy" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>