-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNHToolbox.pssproj
More file actions
59 lines (59 loc) · 2.39 KB
/
NHToolbox.pssproj
File metadata and controls
59 lines (59 loc) · 2.39 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>6CAFC0C6-A428-4d30-A9F9-700E829FEA51</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>MyApplication</RootNamespace>
<AssemblyName>MyApplication</AssemblyName>
<Name>NHToolbox</Name>
<ProjectHome />
<FormatsToProcess />
<FunctionsToProcess />
<ModuleList />
<ModuleToProcess>'NHToolbox.psm1'</ModuleToProcess>
<NestedModules>'Tools/NHRegex.psm1'</NestedModules>
<TypesToProcess />
<VariablesToExport>*</VariablesToExport>
<CmdletsToExport>*</CmdletsToExport>
<AliasesToExport>*</AliasesToExport>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Folder Include="Tools\" />
</ItemGroup>
<ItemGroup>
<Compile Include="license.txt" />
<Compile Include="NHToolbox.psd1" />
<Compile Include="NHToolbox.psm1" />
<Compile Include="NHToolbox.tests.ps1" />
<Compile Include="Tools\Get-NicSettings.ps1" />
<Compile Include="Tools\Get-RelativePath.ps1" />
<Compile Include="Tools\NHJournal.psm1" />
<Compile Include="Tools\Find-Replace.ps1" />
<Compile Include="Tools\Get-OsInfo.ps1" />
<Compile Include="Tools\Get-UserLoggedOn.ps1" />
<Compile Include="Tools\Import-IisLog.ps1" />
<Compile Include="Tools\NHRegex.psm1" />
<Compile Include="Tools\Resolve-HostName.ps1" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Target Name="Build" />
</Project>