-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTouchDirWithFileDate.csproj
More file actions
29 lines (25 loc) · 1.13 KB
/
TouchDirWithFileDate.csproj
File metadata and controls
29 lines (25 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework Condition="$(TargetFrameworks) == ''">net8.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishTrimmed>false</PublishTrimmed>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<RootNamespace>TouchDirWithFileDate</RootNamespace>
<ApplicationIcon>magic-wand.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="magic-wand.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="Spectre.Console.Cli.Extensions.DependencyInjection" Version="0.1.0" />
<PackageReference Include="Spectre.Console" Version="0.47.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.47.0" />
</ItemGroup>
</Project>