-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDetonatorAgent.csproj
More file actions
31 lines (26 loc) · 1.1 KB
/
DetonatorAgent.csproj
File metadata and controls
31 lines (26 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>false</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoItX.Dotnet" Version="3.3.14.5" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.4" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="System.Diagnostics.EventLog" Version="8.0.0" Condition="'$(RuntimeIdentifier)' == 'win-x64' OR '$(OS)' == 'Windows_NT'" />
<PackageReference Include="System.Management" Version="10.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="AutoItX3.Assembly">
<HintPath>$(USERPROFILE)\.nuget\packages\autoitx.dotnet\3.3.14.5\lib\AutoItX3.Assembly.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Remove="azure_config.json" />
<None Include="azure_config.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>