-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalAccounts.csproj
65 lines (53 loc) · 2.46 KB
/
LocalAccounts.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
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>PowerShell LocalAccounts module for Windows</Description>
<Nullable>enable</Nullable>
<AssemblyName>LocalAccounts</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management.Automation" Version="7.4.2" />
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="8.0.0" />
</ItemGroup>
<PropertyGroup>
<Product>PowerShell LocalAccounts</Product>
<Copyright>(c) I.E.Sazonov. All rights reserved.</Copyright>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>11.0</LangVersion>
<CoreCompileDependsOn>PrepareResources;$(CompileDependsOn)</CoreCompileDependsOn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<NeutralLanguage>en-US</NeutralLanguage>
<HighEntropyVA>true</HighEntropyVA>
<PSCoreFileVersion>1.0.0.0</PSCoreFileVersion>
<Version>$(PSCoreFileVersion)</Version>
<InformationalVersion>$(PSCoreFileVersion)</InformationalVersion>
<ProductVersion>$(PSCoreFileVersion)</ProductVersion>
<PackageVersion>$(PSCoreFileVersion)</PackageVersion>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="resources\*.resx">
<Generator>MSBuild:Compile</Generator>
<StronglyTypedLanguage>CSharp</StronglyTypedLanguage>
<StronglyTypedNamespace>$(MSBuildProjectName)</StronglyTypedNamespace>
<StronglyTypedClassName>Strings</StronglyTypedClassName>
<ManifestResourceName>%(Filename)</ManifestResourceName>
</EmbeddedResource>
</ItemGroup>
<!-- Define all OS, debug configuration properties -->
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>portable</DebugType>
</PropertyGroup>
<!-- Define all OS, release configuration properties -->
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<Optimize>true</Optimize>
<DebugType>portable</DebugType>
</PropertyGroup>
<!-- Define all OS, CodeCoverage configuration properties -->
<PropertyGroup Condition=" '$(Configuration)' == 'CodeCoverage' ">
<!-- This is required to be portable to Coverlet tool !-->
<DebugType>portable</DebugType>
</PropertyGroup>
</Project>