-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEndurance Testing.csproj
More file actions
31 lines (31 loc) · 1.26 KB
/
Endurance Testing.csproj
File metadata and controls
31 lines (31 loc) · 1.26 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">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<RootNamespace>Endurance_Testing</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<ApplicationIcon>ic_endurance_testing.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="UserGuideEN.pdf" />
<None Remove="UserGuideID.pdf" />
</ItemGroup>
<ItemGroup>
<Content Include="ic_endurance_testing.ico" />
<Content Include="UserGuideEN.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="UserGuideID.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CircularProgressBar_NET5" Version="3.0.0" />
<PackageReference Include="ClosedXML" Version="0.104.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.3" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.3" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3124.44" />
</ItemGroup>
</Project>