-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTouchDirWithFileDate.csproj
27 lines (23 loc) · 1.01 KB
/
TouchDirWithFileDate.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameWork Condition="$(TargetFrameworks) == ''">net7.0</TargetFrameWork>
<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" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console.Cli.Extensions.DependencyInjection" Version="0.1.0" />
<PackageReference Include="Spectre.Console" Version="0.45.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.45.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>