Skip to content

Commit fe79204

Browse files
author
Kapil Borle
committed
Revert solution and project files
1 parent 398f785 commit fe79204

File tree

3 files changed

+35
-82
lines changed

3 files changed

+35
-82
lines changed

Engine/ScriptAnalyzerEngine.csproj

Lines changed: 18 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -51,36 +51,20 @@
5151
<ErrorReport>prompt</ErrorReport>
5252
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
5353
</PropertyGroup>
54-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'CoreCLR Debug|AnyCPU'">
55-
<TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
56-
<DebugSymbols>true</DebugSymbols>
57-
<OutputPath>bin\CoreCLR Debug\</OutputPath>
58-
<DefineConstants>TRACE;DEBUG;CORECLR</DefineConstants>
59-
<DebugType>full</DebugType>
60-
<PlatformTarget>AnyCPU</PlatformTarget>
61-
<ErrorReport>prompt</ErrorReport>
62-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
63-
<TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
64-
<TargetFrameworkVersion>v0.1</TargetFrameworkVersion>
65-
</PropertyGroup>
66-
<Choose>
67-
<When Condition="'$(Configuration)|$(Platform)' != 'CoreCLR Debug|AnyCPU'">
68-
<ItemGroup>
69-
<Reference Include="Microsoft.CSharp" />
70-
<Reference Include="System" />
71-
<Reference Include="System.ComponentModel.Composition" />
72-
<Reference Include="System.Core" />
73-
<Reference Include="System.Data" />
74-
<Reference Include="System.Data.DataSetExtensions" />
75-
<Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
76-
<SpecificVersion>False</SpecificVersion>
77-
<HintPath>..\..\..\..\..\..\fbl_srv2_ci_mgmt.binaries.amd64chk\monad\System.Management.Automation.dll</HintPath>
78-
</Reference>
79-
<Reference Include="System.Xml" />
80-
<Reference Include="System.Xml.Linq" />
81-
</ItemGroup>
82-
</When>
83-
</Choose>
54+
<ItemGroup>
55+
<Reference Include="Microsoft.CSharp" />
56+
<Reference Include="System" />
57+
<Reference Include="System.ComponentModel.Composition" />
58+
<Reference Include="System.Core" />
59+
<Reference Include="System.Data" />
60+
<Reference Include="System.Data.DataSetExtensions" />
61+
<Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
62+
<SpecificVersion>False</SpecificVersion>
63+
<HintPath>..\..\..\..\..\..\fbl_srv2_ci_mgmt.binaries.amd64chk\monad\System.Management.Automation.dll</HintPath>
64+
</Reference>
65+
<Reference Include="System.Xml" />
66+
<Reference Include="System.Xml.Linq" />
67+
</ItemGroup>
8468
<ItemGroup>
8569
<Compile Include="Commands\GetScriptAnalyzerRuleCommand.cs" />
8670
<Compile Include="Commands\InvokeScriptAnalyzerCommand.cs" />
@@ -107,13 +91,10 @@
10791
<Compile Include="Helper.cs" />
10892
<Compile Include="IOutputWriter.cs" />
10993
<Compile Include="Loggers\WriteObjectsLogger.cs" />
110-
<Compile Include="SafeDirectoryCatalog.cs" Condition="'$(Configuration)|$(Platform)' != 'CoreCLR Debug|AnyCPU'" />
94+
<Compile Include="SafeDirectoryCatalog.cs" />
11195
<Compile Include="ScriptAnalyzer.cs" />
11296
<Compile Include="SpecialVars.cs" />
113-
<Compile Include="Strings.Designer.Core.cs" Condition="'$(Configuration)|$(Platform)' == 'CoreCLR Debug|AnyCPU'">
114-
<DependentUpon>Strings.resx</DependentUpon>
115-
</Compile>
116-
<Compile Include="Strings.Designer.cs" Condition="'$(Configuration)|$(Platform)' != 'CoreCLR Debug|AnyCPU'">
97+
<Compile Include="Strings.Designer.cs">
11798
<AutoGen>True</AutoGen>
11899
<DesignTime>True</DesignTime>
119100
<DependentUpon>Strings.resx</DependentUpon>
@@ -134,18 +115,11 @@
134115
</ItemGroup>
135116
<ItemGroup>
136117
<EmbeddedResource Include="Strings.resx">
137-
<Generator Condition="'$(Configuration)|$(Platform)' != 'CoreCLR Debug|AnyCPU'">ResXFileCodeGenerator</Generator>
138-
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
139-
<SubType>Designer</SubType>
140-
</EmbeddedResource>
141-
<!--<EmbeddedResource Include="Strings.resx">
142118
<Generator>ResXFileCodeGenerator</Generator>
143119
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
144-
<SubType>Designer</SubType>
145-
</EmbeddedResource>-->
120+
</EmbeddedResource>
146121
</ItemGroup>
147-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" Condition="'$(Configuration)|$(Platform)' != 'CoreCLR Debug|AnyCPU'" />
148-
<Import Project="$(SolutionDir)\Microsoft.CoreSys.CSHARP.Targets" Condition="'$(Configuration)|$(Platform)' == 'CoreCLR Debug|AnyCPU'" />
122+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
149123
<ProjectExtensions>
150124
<VisualStudio AllowExistingFolder="true" />
151125
</ProjectExtensions>

PSScriptAnalyzer.sln

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25123.0
4+
VisualStudioVersion = 14.0.23107.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScriptAnalyzerEngine", "Engine\ScriptAnalyzerEngine.csproj", "{F4BDE3D0-3EEF-4157-8A3E-722DF7ADEF60}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScriptAnalyzerBuiltinRules", "Rules\ScriptAnalyzerBuiltinRules.csproj", "{C33B6B9D-E61C-45A3-9103-895FD82A5C1E}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12-
CoreCLR Debug|Any CPU = CoreCLR Debug|Any CPU
1312
Debug|Any CPU = Debug|Any CPU
1413
PSV3 Debug|Any CPU = PSV3 Debug|Any CPU
1514
PSV3 Release|Any CPU = PSV3 Release|Any CPU
1615
Release|Any CPU = Release|Any CPU
1716
EndGlobalSection
1817
GlobalSection(ProjectConfigurationPlatforms) = postSolution
19-
{F4BDE3D0-3EEF-4157-8A3E-722DF7ADEF60}.CoreCLR Debug|Any CPU.ActiveCfg = CoreCLR Debug|Any CPU
20-
{F4BDE3D0-3EEF-4157-8A3E-722DF7ADEF60}.CoreCLR Debug|Any CPU.Build.0 = CoreCLR Debug|Any CPU
2118
{F4BDE3D0-3EEF-4157-8A3E-722DF7ADEF60}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2219
{F4BDE3D0-3EEF-4157-8A3E-722DF7ADEF60}.Debug|Any CPU.Build.0 = Debug|Any CPU
2320
{F4BDE3D0-3EEF-4157-8A3E-722DF7ADEF60}.PSV3 Debug|Any CPU.ActiveCfg = PSV3 Debug|Any CPU
@@ -26,8 +23,6 @@ Global
2623
{F4BDE3D0-3EEF-4157-8A3E-722DF7ADEF60}.PSV3 Release|Any CPU.Build.0 = PSV3 Release|Any CPU
2724
{F4BDE3D0-3EEF-4157-8A3E-722DF7ADEF60}.Release|Any CPU.ActiveCfg = Release|Any CPU
2825
{F4BDE3D0-3EEF-4157-8A3E-722DF7ADEF60}.Release|Any CPU.Build.0 = Release|Any CPU
29-
{C33B6B9D-E61C-45A3-9103-895FD82A5C1E}.CoreCLR Debug|Any CPU.ActiveCfg = CoreCLR Debug|Any CPU
30-
{C33B6B9D-E61C-45A3-9103-895FD82A5C1E}.CoreCLR Debug|Any CPU.Build.0 = CoreCLR Debug|Any CPU
3126
{C33B6B9D-E61C-45A3-9103-895FD82A5C1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3227
{C33B6B9D-E61C-45A3-9103-895FD82A5C1E}.Debug|Any CPU.Build.0 = Debug|Any CPU
3328
{C33B6B9D-E61C-45A3-9103-895FD82A5C1E}.PSV3 Debug|Any CPU.ActiveCfg = PSV3 Debug|Any CPU

Rules/ScriptAnalyzerBuiltinRules.csproj

Lines changed: 16 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -51,36 +51,21 @@
5151
<ErrorReport>prompt</ErrorReport>
5252
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
5353
</PropertyGroup>
54-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'CoreCLR Debug|AnyCPU'">
55-
<TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
56-
<TargetFrameworkVersion>v0.1</TargetFrameworkVersion>
57-
<DebugSymbols>true</DebugSymbols>
58-
<OutputPath>bin\CoreCLR Debug\</OutputPath>
59-
<DefineConstants>TRACE;DEBUG;CORECLR</DefineConstants>
60-
<DebugType>full</DebugType>
61-
<PlatformTarget>AnyCPU</PlatformTarget>
62-
<ErrorReport>prompt</ErrorReport>
63-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
64-
</PropertyGroup>
65-
<Choose>
66-
<When Condition="'$(Configuration)|$(Platform)' != 'CoreCLR Debug|AnyCPU'">
67-
<ItemGroup>
68-
<Reference Include="Microsoft.CSharp" />
69-
<Reference Include="System" />
70-
<Reference Include="System.ComponentModel.Composition" />
71-
<Reference Include="System.Core" />
72-
<Reference Include="System.Data" />
73-
<Reference Include="System.Data.DataSetExtensions" />
74-
<Reference Include="System.Data.Entity.Design" />
75-
<Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
76-
<SpecificVersion>False</SpecificVersion>
77-
<HintPath>..\..\..\..\..\..\fbl_srv2_ci_mgmt.binaries.amd64chk\monad\System.Management.Automation.dll</HintPath>
78-
</Reference>
79-
<Reference Include="System.Xml" />
80-
<Reference Include="System.Xml.Linq" />
81-
</ItemGroup>
82-
</When>
83-
</Choose>
54+
<ItemGroup>
55+
<Reference Include="Microsoft.CSharp" />
56+
<Reference Include="System" />
57+
<Reference Include="System.ComponentModel.Composition" />
58+
<Reference Include="System.Core" />
59+
<Reference Include="System.Data" />
60+
<Reference Include="System.Data.DataSetExtensions" />
61+
<Reference Include="System.Data.Entity.Design" />
62+
<Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
63+
<SpecificVersion>False</SpecificVersion>
64+
<HintPath>..\..\..\..\..\..\fbl_srv2_ci_mgmt.binaries.amd64chk\monad\System.Management.Automation.dll</HintPath>
65+
</Reference>
66+
<Reference Include="System.Xml" />
67+
<Reference Include="System.Xml.Linq" />
68+
</ItemGroup>
8469
<ItemGroup>
8570
<Compile Include="AvoidAlias.cs" />
8671
<Compile Include="AvoidDefaultTrueValueSwitchParameter.cs" />
@@ -142,8 +127,7 @@
142127
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
143128
</EmbeddedResource>
144129
</ItemGroup>
145-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" Condition="'$(Configuration)|$(Platform)' != 'CoreCLR Debug|AnyCPU'"/>
146-
<Import Project="$(SolutionDir)\Microsoft.CoreSys.CSHARP.Targets" Condition="'$(Configuration)|$(Platform)' == 'CoreCLR Debug|AnyCPU'"/>
130+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
147131
<ProjectExtensions>
148132
<VisualStudio AllowExistingFolder="true" />
149133
</ProjectExtensions>

0 commit comments

Comments
 (0)