Skip to content

Commit 1568e62

Browse files
author
Alex Davies
committed
Clean up packages.
1 parent 164d8fc commit 1568e62

File tree

2 files changed

+112
-112
lines changed

2 files changed

+112
-112
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,108 +1,108 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props')" />
4-
<Import Project="..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props')" />
5-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
6-
<PropertyGroup>
7-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
8-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
9-
<ProjectGuid>{D3E70B64-E690-40BC-800F-5C463386E951}</ProjectGuid>
10-
<OutputType>Library</OutputType>
11-
<AppDesignerFolder>Properties</AppDesignerFolder>
12-
<RootNamespace>StringToExpression.Test</RootNamespace>
13-
<AssemblyName>StringToExpression.Test</AssemblyName>
14-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
15-
<FileAlignment>512</FileAlignment>
16-
<NuGetPackageImportStamp>
17-
</NuGetPackageImportStamp>
18-
</PropertyGroup>
19-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20-
<DebugSymbols>true</DebugSymbols>
21-
<DebugType>full</DebugType>
22-
<Optimize>false</Optimize>
23-
<OutputPath>bin\Debug\</OutputPath>
24-
<DefineConstants>DEBUG;TRACE</DefineConstants>
25-
<ErrorReport>prompt</ErrorReport>
26-
<WarningLevel>4</WarningLevel>
27-
</PropertyGroup>
28-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29-
<DebugType>pdbonly</DebugType>
30-
<Optimize>true</Optimize>
31-
<OutputPath>bin\Release\</OutputPath>
32-
<DefineConstants>TRACE</DefineConstants>
33-
<ErrorReport>prompt</ErrorReport>
34-
<WarningLevel>4</WarningLevel>
35-
</PropertyGroup>
36-
<ItemGroup>
37-
<Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">
38-
<HintPath>..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath>
39-
<Private>True</Private>
40-
</Reference>
41-
<Reference Include="LinqToQuerystring, Version=0.7.0.8, Culture=neutral, processorArchitecture=MSIL">
42-
<HintPath>..\packages\LinqToQuerystring.0.7.0.8\lib\net35\LinqToQuerystring.dll</HintPath>
43-
<Private>True</Private>
44-
</Reference>
45-
<Reference Include="System" />
46-
<Reference Include="System.Core" />
47-
<Reference Include="System.Xml.Linq" />
48-
<Reference Include="System.Data.DataSetExtensions" />
49-
<Reference Include="Microsoft.CSharp" />
50-
<Reference Include="System.Data" />
51-
<Reference Include="System.Net.Http" />
52-
<Reference Include="System.Xml" />
53-
<Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
54-
<HintPath>..\..\packages\xunit.abstractions.2.0.1\lib\net35\xunit.abstractions.dll</HintPath>
55-
<Private>True</Private>
56-
</Reference>
57-
<Reference Include="xunit.assert, Version=2.2.0.3545, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
58-
<HintPath>..\..\packages\xunit.assert.2.2.0\lib\netstandard1.1\xunit.assert.dll</HintPath>
59-
<Private>True</Private>
60-
</Reference>
61-
<Reference Include="xunit.core, Version=2.2.0.3545, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
62-
<HintPath>..\..\packages\xunit.extensibility.core.2.2.0\lib\netstandard1.1\xunit.core.dll</HintPath>
63-
<Private>True</Private>
64-
</Reference>
65-
<Reference Include="xunit.execution.desktop, Version=2.2.0.3545, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
66-
<HintPath>..\..\packages\xunit.extensibility.execution.2.2.0\lib\net452\xunit.execution.desktop.dll</HintPath>
67-
<Private>True</Private>
68-
</Reference>
69-
</ItemGroup>
70-
<ItemGroup>
71-
<Compile Include="Languages\Arithmetic\ArithmeticLangaugeTests.cs" />
72-
<Compile Include="Languages\ODataFilter\Fixtures\LinqToQuerystringTestDataFixture.cs" />
73-
<Compile Include="Languages\ODataFilter\LinqToQuerystringEquivalenceTests.cs" />
74-
<Compile Include="Languages\ODataFilter\ODataArithmeticTests.cs" />
75-
<Compile Include="Parser\ParserErrorTests.cs" />
76-
<Compile Include="Parser\ParserTests.cs" />
77-
<Compile Include="Tokenizer\TokenizerTests.cs" />
78-
<Compile Include="Properties\AssemblyInfo.cs" />
79-
<Compile Include="TestUtil.cs" />
80-
</ItemGroup>
81-
<ItemGroup>
82-
<None Include="packages.config" />
83-
</ItemGroup>
84-
<ItemGroup>
85-
<ProjectReference Include="..\..\src\StringToExpression\StringToExpression.csproj">
86-
<Project>{b1b0a26f-04e2-40e5-b25c-12764e50befc}</Project>
87-
<Name>StringToExpression</Name>
88-
</ProjectReference>
89-
</ItemGroup>
90-
<ItemGroup>
91-
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
92-
</ItemGroup>
93-
<ItemGroup />
94-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
95-
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
96-
<PropertyGroup>
97-
<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>
98-
</PropertyGroup>
99-
<Error Condition="!Exists('..\..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props'))" />
100-
</Target>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props')" />
4+
<Import Project="..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props')" />
5+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
6+
<PropertyGroup>
7+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
8+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
9+
<ProjectGuid>{D3E70B64-E690-40BC-800F-5C463386E951}</ProjectGuid>
10+
<OutputType>Library</OutputType>
11+
<AppDesignerFolder>Properties</AppDesignerFolder>
12+
<RootNamespace>StringToExpression.Test</RootNamespace>
13+
<AssemblyName>StringToExpression.Test</AssemblyName>
14+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
15+
<FileAlignment>512</FileAlignment>
16+
<NuGetPackageImportStamp>
17+
</NuGetPackageImportStamp>
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20+
<DebugSymbols>true</DebugSymbols>
21+
<DebugType>full</DebugType>
22+
<Optimize>false</Optimize>
23+
<OutputPath>bin\Debug\</OutputPath>
24+
<DefineConstants>DEBUG;TRACE</DefineConstants>
25+
<ErrorReport>prompt</ErrorReport>
26+
<WarningLevel>4</WarningLevel>
27+
</PropertyGroup>
28+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29+
<DebugType>pdbonly</DebugType>
30+
<Optimize>true</Optimize>
31+
<OutputPath>bin\Release\</OutputPath>
32+
<DefineConstants>TRACE</DefineConstants>
33+
<ErrorReport>prompt</ErrorReport>
34+
<WarningLevel>4</WarningLevel>
35+
</PropertyGroup>
36+
<ItemGroup>
37+
<Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">
38+
<HintPath>..\..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath>
39+
<Private>True</Private>
40+
</Reference>
41+
<Reference Include="LinqToQuerystring, Version=0.7.0.8, Culture=neutral, processorArchitecture=MSIL">
42+
<HintPath>..\..\packages\LinqToQuerystring.0.7.0.8\lib\net35\LinqToQuerystring.dll</HintPath>
43+
<Private>True</Private>
44+
</Reference>
45+
<Reference Include="System" />
46+
<Reference Include="System.Core" />
47+
<Reference Include="System.Xml.Linq" />
48+
<Reference Include="System.Data.DataSetExtensions" />
49+
<Reference Include="Microsoft.CSharp" />
50+
<Reference Include="System.Data" />
51+
<Reference Include="System.Net.Http" />
52+
<Reference Include="System.Xml" />
53+
<Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
54+
<HintPath>..\..\packages\xunit.abstractions.2.0.1\lib\net35\xunit.abstractions.dll</HintPath>
55+
<Private>True</Private>
56+
</Reference>
57+
<Reference Include="xunit.assert, Version=2.2.0.3545, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
58+
<HintPath>..\..\packages\xunit.assert.2.2.0\lib\netstandard1.1\xunit.assert.dll</HintPath>
59+
<Private>True</Private>
60+
</Reference>
61+
<Reference Include="xunit.core, Version=2.2.0.3545, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
62+
<HintPath>..\..\packages\xunit.extensibility.core.2.2.0\lib\netstandard1.1\xunit.core.dll</HintPath>
63+
<Private>True</Private>
64+
</Reference>
65+
<Reference Include="xunit.execution.desktop, Version=2.2.0.3545, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
66+
<HintPath>..\..\packages\xunit.extensibility.execution.2.2.0\lib\net452\xunit.execution.desktop.dll</HintPath>
67+
<Private>True</Private>
68+
</Reference>
69+
</ItemGroup>
70+
<ItemGroup>
71+
<Compile Include="Languages\Arithmetic\ArithmeticLangaugeTests.cs" />
72+
<Compile Include="Languages\ODataFilter\Fixtures\LinqToQuerystringTestDataFixture.cs" />
73+
<Compile Include="Languages\ODataFilter\LinqToQuerystringEquivalenceTests.cs" />
74+
<Compile Include="Languages\ODataFilter\ODataArithmeticTests.cs" />
75+
<Compile Include="Parser\ParserErrorTests.cs" />
76+
<Compile Include="Parser\ParserTests.cs" />
77+
<Compile Include="Tokenizer\TokenizerTests.cs" />
78+
<Compile Include="Properties\AssemblyInfo.cs" />
79+
<Compile Include="TestUtil.cs" />
80+
</ItemGroup>
81+
<ItemGroup>
82+
<None Include="packages.config" />
83+
</ItemGroup>
84+
<ItemGroup>
85+
<ProjectReference Include="..\..\src\StringToExpression\StringToExpression.csproj">
86+
<Project>{b1b0a26f-04e2-40e5-b25c-12764e50befc}</Project>
87+
<Name>StringToExpression</Name>
88+
</ProjectReference>
89+
</ItemGroup>
90+
<ItemGroup>
91+
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
92+
</ItemGroup>
93+
<ItemGroup />
94+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
95+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
96+
<PropertyGroup>
97+
<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>
98+
</PropertyGroup>
99+
<Error Condition="!Exists('..\..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\xunit.runner.visualstudio.2.2.0\build\net20\xunit.runner.visualstudio.props'))" />
100+
</Target>
101101
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
102102
Other similar extension points exist, see Microsoft.Common.targets.
103103
<Target Name="BeforeBuild">
104104
</Target>
105105
<Target Name="AfterBuild">
106106
</Target>
107-
-->
107+
-->
108108
</Project>
+11-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<packages>
3-
<package id="Antlr" version="3.5.0.2" targetFramework="net452" />
4-
<package id="LinqToQuerystring" version="0.7.0.8" targetFramework="net452" />
5-
<package id="xunit" version="2.2.0" targetFramework="net452" />
6-
<package id="xunit.abstractions" version="2.0.1" targetFramework="net452" />
7-
<package id="xunit.assert" version="2.2.0" targetFramework="net452" />
8-
<package id="xunit.core" version="2.2.0" targetFramework="net452" />
9-
<package id="xunit.extensibility.core" version="2.2.0" targetFramework="net452" />
10-
<package id="xunit.extensibility.execution" version="2.2.0" targetFramework="net452" />
11-
<package id="xunit.runner.visualstudio" version="2.2.0" targetFramework="net452" developmentDependency="true" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Antlr" version="3.5.0.2" targetFramework="net452" />
4+
<package id="LinqToQuerystring" version="0.7.0.8" targetFramework="net452" />
5+
<package id="xunit" version="2.2.0" targetFramework="net452" />
6+
<package id="xunit.abstractions" version="2.0.1" targetFramework="net452" />
7+
<package id="xunit.assert" version="2.2.0" targetFramework="net452" />
8+
<package id="xunit.core" version="2.2.0" targetFramework="net452" />
9+
<package id="xunit.extensibility.core" version="2.2.0" targetFramework="net452" />
10+
<package id="xunit.extensibility.execution" version="2.2.0" targetFramework="net452" />
11+
<package id="xunit.runner.visualstudio" version="2.2.0" targetFramework="net452" developmentDependency="true" />
1212
</packages>

0 commit comments

Comments
 (0)