-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInvokeHub.csproj
More file actions
44 lines (38 loc) · 1.42 KB
/
InvokeHub.csproj
File metadata and controls
44 lines (38 loc) · 1.42 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<RootNamespace>InvokeHub</RootNamespace>
<AssemblyName>InvokeHub</AssemblyName>
</PropertyGroup>
<ItemGroup>
<!-- Azure Functions Dependencies -->
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.2.0" />
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
<!-- Azure Storage -->
<PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" />
<!-- Dependency Injection -->
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<!-- Eingebettete PowerShell Scripts -->
<ItemGroup>
<EmbeddedResource Include="Powershell\Client.ps1">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<!-- Ordnerstruktur sicherstellen -->
<ItemGroup>
<Folder Include="Api\" />
<Folder Include="Services\" />
<Folder Include="Security\" />
<Folder Include="Models\" />
<Folder Include="Utilities\" />
<Folder Include="Powershell\" />
</ItemGroup>
</Project>