-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCodingTimeTrackerForSteam.csproj
More file actions
36 lines (31 loc) · 1.13 KB
/
CodingTimeTrackerForSteam.csproj
File metadata and controls
36 lines (31 loc) · 1.13 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<PublishSingleFile>true</PublishSingleFile>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<FileVersion>1.5.0</FileVersion>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<DebugType>none</DebugType>
<PublishTrimmed>false</PublishTrimmed>
<ApplicationIcon>Resources\vscode.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\vscode.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Localization\Strings.resx">
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Compile Update="Localization\Strings.Designer.cs">
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="9.0.0" />
</ItemGroup>
</Project>