-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDiabloTwoMFTimer.csproj
More file actions
29 lines (27 loc) · 1.01 KB
/
DiabloTwoMFTimer.csproj
File metadata and controls
29 lines (27 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<AssemblyName>DiabloTwoMFTimer</AssemblyName>
<RootNamespace>DiabloTwoMFTimer</RootNamespace>
<ApplicationIcon>Resources\d2r.ico</ApplicationIcon>
<Version>1.1.3</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
<PackageReference Include="YamlDotNet" Version="15.1.0" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Resources\d2r.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Resources\FarmingSpots.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>