forked from genXdev/GenXdev.FileSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenXdev.FileSystem.csproj
More file actions
59 lines (58 loc) · 2.64 KB
/
GenXdev.FileSystem.csproj
File metadata and controls
59 lines (58 loc) · 2.64 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<TargetFramework>net9.0-windows10.0.18362.0</TargetFramework>
<OutputType>Library</OutputType>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1.270.2025</AssemblyVersion>
<FileVersion>1.270.2025</FileVersion>
<Description>A Windows PowerShell module for basic and advanced file management tasks</Description>
<Copyright>Copyright (c) 2024 GenXdev</Copyright>
<PackageProjectUrl>https://github.com/genXdev/GenXdev.Helpers</PackageProjectUrl>
<PackageIcon>powershell.jpg</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/genXdev/GenXdev.FileSystem</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>GenXdev, PowerShell, FileSystem, Windows</PackageTags>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyName>GenXdev.FileSystem</AssemblyName>
<RootNamespace>GenXdev.FileSystem</RootNamespace>
<OutputPath>./bin/</OutputPath>
<IntermediateOutputPath>./obj/</IntermediateOutputPath>
<BaseOutputPath>.\bin\</BaseOutputPath>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<UserSecretsId>859ba72c-3594-4ef3-8c11-a6cf3bd8f8fd</UserSecretsId>
<Title>GenXdev.FileSystem</Title>
<EnforceCodeStyleInBuild>False</EnforceCodeStyleInBuild>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<SupportedOSPlatformVersion>10.0.18362.0</SupportedOSPlatformVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StreamRegex.Extensions" Version="1.2.7" />
<PackageReference Include="System.Management.Automation" Version="7.5.0" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="license.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>