Skip to content
This repository was archived by the owner on Sep 1, 2021. It is now read-only.

Commit cc88f09

Browse files
author
Dave Garnar
committed
fixing csproj file - got meesed up in merge
1 parent e558233 commit cc88f09

File tree

1 file changed

+23
-7
lines changed

1 file changed

+23
-7
lines changed

PSCredentialManager.Cmdlet/PSCredentialManager.Cmdlet.csproj

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\packages\XmlDoc2CmdletDoc.0.2.3\build\XmlDoc2CmdletDoc.props" Condition="Exists('..\packages\XmlDoc2CmdletDoc.0.2.3\build\XmlDoc2CmdletDoc.props')" />
34
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
67
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
78
<ProjectGuid>{EB676C83-B382-4217-AAF9-C412B1E26B5F}</ProjectGuid>
89
<OutputType>Library</OutputType>
910
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>PSCredentialManager</RootNamespace>
11-
<AssemblyName>PSCredentialManager.Cmdlet</AssemblyName>
11+
<RootNamespace>PSCredentialManager.Cmdlet</RootNamespace>
12+
<AssemblyName>CredentialManager</AssemblyName>
1213
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1314
<FileAlignment>512</FileAlignment>
1415
<TargetFrameworkProfile />
16+
<NuGetPackageImportStamp>
17+
</NuGetPackageImportStamp>
1518
</PropertyGroup>
1619
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1720
<DebugSymbols>true</DebugSymbols>
@@ -31,13 +34,14 @@
3134
<DefineConstants>TRACE</DefineConstants>
3235
<ErrorReport>prompt</ErrorReport>
3336
<WarningLevel>4</WarningLevel>
37+
<DocumentationFile>bin\Release\CredentialManager.XML</DocumentationFile>
3438
</PropertyGroup>
3539
<ItemGroup>
3640
<Reference Include="System" />
3741
<Reference Include="System.Core" />
38-
<Reference Include="System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
39-
<HintPath>..\packages\System.Management.Automation.6.1.7601.17515\lib\net40\System.Management.Automation.dll</HintPath>
40-
<Private>True</Private>
42+
<Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
43+
<SpecificVersion>False</SpecificVersion>
44+
<HintPath>..\packages\System.Management.Automation.6.1.7601.17515\lib\net45\System.Management.Automation.dll</HintPath>
4145
</Reference>
4246
<Reference Include="System.Web" />
4347
<Reference Include="System.Xml.Linq" />
@@ -48,12 +52,16 @@
4852
</ItemGroup>
4953
<ItemGroup>
5054
<Compile Include="Cmdlets.cs" />
55+
<Compile Include="Extensions\CredentialExtensions.cs" />
56+
<Compile Include="Extensions\SecureStringExtensions.cs" />
5157
<Compile Include="Properties\AssemblyInfo.cs" />
52-
<Compile Include="Utility\CredentialUtility.cs" />
58+
<Compile Include="Extensions\StringExtensions.cs" />
5359
</ItemGroup>
5460
<ItemGroup>
5561
<None Include="app.config" />
56-
<None Include="CredentialManager.psd1" />
62+
<Content Include="CredentialManager.psd1">
63+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
64+
</Content>
5765
<None Include="packages.config" />
5866
</ItemGroup>
5967
<ItemGroup>
@@ -71,6 +79,14 @@
7179
<PostBuildEvent>
7280
</PostBuildEvent>
7381
</PropertyGroup>
82+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
83+
<PropertyGroup>
84+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
85+
</PropertyGroup>
86+
<Error Condition="!Exists('..\packages\XmlDoc2CmdletDoc.0.2.3\build\XmlDoc2CmdletDoc.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\XmlDoc2CmdletDoc.0.2.3\build\XmlDoc2CmdletDoc.props'))" />
87+
<Error Condition="!Exists('..\packages\XmlDoc2CmdletDoc.0.2.3\build\XmlDoc2CmdletDoc.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\XmlDoc2CmdletDoc.0.2.3\build\XmlDoc2CmdletDoc.targets'))" />
88+
</Target>
89+
<Import Project="..\packages\XmlDoc2CmdletDoc.0.2.3\build\XmlDoc2CmdletDoc.targets" Condition="Exists('..\packages\XmlDoc2CmdletDoc.0.2.3\build\XmlDoc2CmdletDoc.targets')" />
7490
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7591
Other similar extension points exist, see Microsoft.Common.targets.
7692
<Target Name="BeforeBuild">

0 commit comments

Comments
 (0)