-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathGenXdev.FileSystem.csproj
More file actions
68 lines (67 loc) · 3.33 KB
/
GenXdev.FileSystem.csproj
File metadata and controls
68 lines (67 loc) · 3.33 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
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IncludeWindowsSDKRefFrameworkReferences>false</IncludeWindowsSDKRefFrameworkReferences>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<TargetFramework>net9.0-windows10.0.26100.0</TargetFramework>
<OutputType>Library</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>3.3.2026</AssemblyVersion>
<FileVersion>3.3.2026</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>
<AssemblyName>GenXdev.FileSystem</AssemblyName>
<RootNamespace>GenXdev.FileSystem</RootNamespace>
<OutputPath>./bin/</OutputPath>
<IntermediateOutputPath>./obj/</IntermediateOutputPath>
<BaseOutputPath>.\bin\</BaseOutputPath>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<UserSecretsId>859ba72c-3594-4ef3-8c11-a6cf3bd8f8fd</UserSecretsId>
<Title>GenXdev.FileSystem</Title>
<EnforceCodeStyleInBuild>False</EnforceCodeStyleInBuild>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<PlatformTarget>x64</PlatformTarget>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.PowerShell.Commands.Utility" Version="7.5.4">
<PrivateAssets>None</PrivateAssets>
<IncludeAssets>compile;analyzers;none</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Management.Automation" Version="7.5.4">
<PrivateAssets>None</PrivateAssets>
<IncludeAssets>compile;analyzers;none</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>