-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileCopyUtil.csproj
More file actions
44 lines (42 loc) · 1.78 KB
/
FileCopyUtil.csproj
File metadata and controls
44 lines (42 loc) · 1.78 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
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
<AssemblyName>FCU</AssemblyName>
<AssemblyTitle>FileCopyUtil</AssemblyTitle>
<Product>FileCopyUtil</Product>
<Copyright>Copyright © Marco Perna 2025</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<!-- == DotNet tool ================ -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>FCU</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Authors>Marco Perna</Authors>
<Description>A command-line utility for advanced file copy operations with support for batch processing and flexible options.</Description>
<IncludeSource>true</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
<Deterministic>true</Deterministic>
<RepositoryUrl>https://github.com/LongJSilver/FileCopyUtil</RepositoryUrl>
<PackageProjectUrl>https://github.com/LongJSilver/FileCopyUtil</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- =============================== -->
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Arguments.xml" />
<PackageReference Include="Aspetta" Version="0.9.0-Alpha" />
<PackageReference Include="Linea" Version="0.2.5-alpha" />
<PackageReference Include="MapXML" Version="0.2.0-Beta" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="help.txt" />
</ItemGroup>
<ItemGroup>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>