Skip to content

Commit a2628e7

Browse files
committed
Big refactoring of package, assembly and project names. Fix for #76
1 parent 4b51f96 commit a2628e7

67 files changed

Lines changed: 2402 additions & 2135 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

samples/friendapi/Controllers/FriendsController.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
using FriendApi.Models;
2-
using WebApiContrib.CollectionJson;
3-
using WebApiContrib.Formatting.CollectionJson.Client;
4-
using WebApiContrib.Formatting.CollectionJson;
2+
using CollectionJson;
3+
using CollectionJson.Client;
4+
using CollectionJson.Server;
5+
56
using System;
67
using System.Collections.Generic;
78
using System.Linq;
89
using System.Text;
910
using System.Web.Http;
1011
using System.Net.Http;
1112
using System.Net;
12-
using WebApiContrib.Formatting.CollectionJson.Server;
1313

1414
namespace FriendApi.Controllers
1515
{

samples/friendapi/FriendApi.csproj

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -93,26 +93,26 @@
9393
<Compile Include="Properties\AssemblyInfo.cs" />
9494
<Compile Include="ServiceConfiguration.cs" />
9595
</ItemGroup>
96-
<ItemGroup>
97-
<ProjectReference Include="..\..\src\WebApiContrib.CollectionJson\WebApiContrib.CollectionJson.csproj">
98-
<Project>{B9F7BC64-7924-4928-910D-2E9E03DC682F}</Project>
99-
<Name>WebApiContrib.CollectionJson</Name>
100-
</ProjectReference>
101-
<ProjectReference Include="..\..\src\WebApiContrib.Formatting.CollectionJson.Client\WebApiContrib.Formatting.CollectionJson.Client.csproj">
102-
<Project>{E86C985A-ECB3-4065-98C3-CBB2039C7170}</Project>
103-
<Name>WebApiContrib.Formatting.CollectionJson.Client</Name>
104-
</ProjectReference>
105-
<ProjectReference Include="..\..\src\WebApiContrib.Formatting.CollectionJson.Server\WebApiContrib.Formatting.CollectionJson.Server.csproj">
106-
<Project>{f606afbf-1ada-40c5-9cde-5e6e9f2e3f77}</Project>
107-
<Name>WebApiContrib.Formatting.CollectionJson.Server</Name>
108-
</ProjectReference>
109-
</ItemGroup>
11096
<ItemGroup>
11197
<None Include="app.config" />
11298
<None Include="packages.config">
11399
<SubType>Designer</SubType>
114100
</None>
115101
</ItemGroup>
102+
<ItemGroup>
103+
<ProjectReference Include="..\..\src\CollectionJson.Client\CollectionJson.Client.csproj">
104+
<Project>{e86c985a-ecb3-4065-98c3-cbb2039c7170}</Project>
105+
<Name>CollectionJson.Client</Name>
106+
</ProjectReference>
107+
<ProjectReference Include="..\..\src\CollectionJson.Server\CollectionJson.Server.csproj">
108+
<Project>{f606afbf-1ada-40c5-9cde-5e6e9f2e3f77}</Project>
109+
<Name>CollectionJson.Server</Name>
110+
</ProjectReference>
111+
<ProjectReference Include="..\..\src\CollectionJson\CollectionJson.csproj">
112+
<Project>{b9f7bc64-7924-4928-910d-2e9e03dc682f}</Project>
113+
<Name>CollectionJson</Name>
114+
</ProjectReference>
115+
</ItemGroup>
116116
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
117117
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
118118
Other similar extension points exist, see Microsoft.Common.targets.

samples/friendapi/FriendApi.sln

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ VisualStudioVersion = 12.0.30501.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FriendApi", "FriendApi.csproj", "{EAB2A98D-2059-45B2-8DFF-42B8326D5531}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApiContrib.CollectionJson", "..\..\src\WebApiContrib.CollectionJson\WebApiContrib.CollectionJson.csproj", "{B9F7BC64-7924-4928-910D-2E9E03DC682F}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CollectionJson", "..\..\src\CollectionJson\CollectionJson.csproj", "{B9F7BC64-7924-4928-910D-2E9E03DC682F}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApiContrib.Formatting.CollectionJson.Client", "..\..\src\WebApiContrib.Formatting.CollectionJson.Client\WebApiContrib.Formatting.CollectionJson.Client.csproj", "{E86C985A-ECB3-4065-98C3-CBB2039C7170}"
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CollectionJson.Server", "..\..\src\CollectionJson.Server\CollectionJson.Server.csproj", "{F606AFBF-1ADA-40C5-9CDE-5E6E9F2E3F77}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApiContrib.Formatting.CollectionJson.Server", "..\..\src\WebApiContrib.Formatting.CollectionJson.Server\WebApiContrib.Formatting.CollectionJson.Server.csproj", "{F606AFBF-1ADA-40C5-9CDE-5E6E9F2E3F77}"
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CollectionJson.Client", "..\..\src\CollectionJson.Client\CollectionJson.Client.csproj", "{E86C985A-ECB3-4065-98C3-CBB2039C7170}"
1313
EndProject
1414
Global
1515
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -25,18 +25,14 @@ Global
2525
{B9F7BC64-7924-4928-910D-2E9E03DC682F}.Debug|Any CPU.Build.0 = Debug|Any CPU
2626
{B9F7BC64-7924-4928-910D-2E9E03DC682F}.Release|Any CPU.ActiveCfg = Release|Any CPU
2727
{B9F7BC64-7924-4928-910D-2E9E03DC682F}.Release|Any CPU.Build.0 = Release|Any CPU
28-
{E86C985A-ECB3-4065-98C3-CBB2039C7170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29-
{E86C985A-ECB3-4065-98C3-CBB2039C7170}.Debug|Any CPU.Build.0 = Debug|Any CPU
30-
{E86C985A-ECB3-4065-98C3-CBB2039C7170}.Release|Any CPU.ActiveCfg = Release|Any CPU
31-
{E86C985A-ECB3-4065-98C3-CBB2039C7170}.Release|Any CPU.Build.0 = Release|Any CPU
3228
{F606AFBF-1ADA-40C5-9CDE-5E6E9F2E3F77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3329
{F606AFBF-1ADA-40C5-9CDE-5E6E9F2E3F77}.Debug|Any CPU.Build.0 = Debug|Any CPU
3430
{F606AFBF-1ADA-40C5-9CDE-5E6E9F2E3F77}.Release|Any CPU.ActiveCfg = Release|Any CPU
3531
{F606AFBF-1ADA-40C5-9CDE-5E6E9F2E3F77}.Release|Any CPU.Build.0 = Release|Any CPU
36-
{7F98FD89-D157-4623-BB7A-D240BDCD99A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
37-
{7F98FD89-D157-4623-BB7A-D240BDCD99A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
38-
{7F98FD89-D157-4623-BB7A-D240BDCD99A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
39-
{7F98FD89-D157-4623-BB7A-D240BDCD99A0}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{E86C985A-ECB3-4065-98C3-CBB2039C7170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{E86C985A-ECB3-4065-98C3-CBB2039C7170}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{E86C985A-ECB3-4065-98C3-CBB2039C7170}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{E86C985A-ECB3-4065-98C3-CBB2039C7170}.Release|Any CPU.Build.0 = Release|Any CPU
4036
EndGlobalSection
4137
GlobalSection(SolutionProperties) = preSolution
4238
HideSolutionNode = FALSE

samples/friendapi/Infrastructure/FriendDocumentReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using FriendApi.Models;
2-
using WebApiContrib.CollectionJson;
2+
using CollectionJson;
33
using System;
44

55
namespace FriendApi.Infrastructure

samples/friendapi/Infrastructure/FriendDocumentWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Net.Http;
22
using FriendApi.Models;
3-
using WebApiContrib.CollectionJson;
3+
using CollectionJson;
44
using System;
55
using System.Collections.Generic;
66

samples/friendapi/Models/TemplateExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using WebApiContrib.CollectionJson;
1+
using CollectionJson;
22
using System;
33

44
namespace FriendApi.Models

samples/friendapi/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
using FriendApi;
2-
using WebApiContrib.Formatting.CollectionJson;
2+
using CollectionJson;
33
using System;
44
using System.Collections.Generic;
55
using System.Linq;
66
using System.Text;
77
using System.Web.Http.SelfHost;
88

9-
namespace WebApiContrib.Formatting.CollectionJson
9+
namespace FriendApi
1010
{
1111
class Program
1212
{

samples/friendapi/ServiceConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Autofac.Integration.WebApi;
33
using FriendApi.Infrastructure;
44
using FriendApi.Models;
5-
using WebApiContrib.CollectionJson;
5+
using CollectionJson;
66
using System.Web.Http;
77

88
namespace FriendApi

src/WebApiContrib.Formatting.CollectionJson.Client/WebApiContrib.Formatting.CollectionJson.Client.csproj renamed to src/CollectionJson.Client/CollectionJson.Client.csproj

Lines changed: 94 additions & 94 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,95 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{E86C985A-ECB3-4065-98C3-CBB2039C7170}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>WebApiContrib.Formatting.CollectionJson.Client</RootNamespace>
11-
<AssemblyName>WebApiContrib.Formatting.CollectionJson.Client</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13-
<TargetFrameworkProfile>Profile78</TargetFrameworkProfile>
14-
<FileAlignment>512</FileAlignment>
15-
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
16-
<RestorePackages>true</RestorePackages>
17-
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
18-
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
19-
</PropertyGroup>
20-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21-
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
23-
<Optimize>false</Optimize>
24-
<OutputPath>bin\Debug\</OutputPath>
25-
<DefineConstants>DEBUG;TRACE</DefineConstants>
26-
<ErrorReport>prompt</ErrorReport>
27-
<WarningLevel>4</WarningLevel>
28-
<Prefer32Bit>false</Prefer32Bit>
29-
</PropertyGroup>
30-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31-
<DebugType>pdbonly</DebugType>
32-
<Optimize>true</Optimize>
33-
<OutputPath>bin\Release\</OutputPath>
34-
<DefineConstants>TRACE</DefineConstants>
35-
<ErrorReport>prompt</ErrorReport>
36-
<WarningLevel>4</WarningLevel>
37-
<Prefer32Bit>false</Prefer32Bit>
38-
</PropertyGroup>
39-
<ItemGroup>
40-
<Reference Include="Newtonsoft.Json">
41-
<HintPath>..\packages\Newtonsoft.Json.6.0.3\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
42-
</Reference>
43-
<Reference Include="System" />
44-
<Reference Include="System.Core" />
45-
<Reference Include="System.Net.Http">
46-
<HintPath>..\packages\Microsoft.Net.Http.2.2.22\lib\portable-net40+sl4+win8+wp71+wpa81\System.Net.Http.dll</HintPath>
47-
</Reference>
48-
<Reference Include="System.Net.Http.Extensions">
49-
<HintPath>..\packages\Microsoft.Net.Http.2.2.22\lib\portable-net40+sl4+win8+wp71+wpa81\System.Net.Http.Extensions.dll</HintPath>
50-
</Reference>
51-
<Reference Include="System.Net.Http.Formatting">
52-
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.0\lib\portable-wp8+netcore45+net45+wp81+wpa81\System.Net.Http.Formatting.dll</HintPath>
53-
</Reference>
54-
<Reference Include="System.Net.Http.Primitives">
55-
<HintPath>..\packages\Microsoft.Net.Http.2.2.22\lib\portable-net40+sl4+win8+wp71+wpa81\System.Net.Http.Primitives.dll</HintPath>
56-
</Reference>
57-
<Reference Include="System.Xml.Linq" />
58-
<Reference Include="Microsoft.CSharp" />
59-
<Reference Include="System.Xml" />
60-
</ItemGroup>
61-
<ItemGroup>
62-
<Compile Include="..\..\common\VersionInfo.cs">
63-
<Link>Properties\VersionInfo.cs</Link>
64-
</Compile>
65-
<Compile Include="CollectionJsonFormatter.cs" />
66-
<Compile Include="Properties\AssemblyInfo.cs" />
67-
<Compile Include="ReadDocumentExtensions.cs" />
68-
</ItemGroup>
69-
<ItemGroup>
70-
<None Include="app.config" />
71-
<None Include="packages.config" />
72-
<None Include="WebApiContrib.Formatting.CollectionJson.Client.nuspec">
73-
<SubType>Designer</SubType>
74-
</None>
75-
</ItemGroup>
76-
<ItemGroup>
77-
<ProjectReference Include="..\WebApiContrib.CollectionJson\WebApiContrib.CollectionJson.csproj">
78-
<Project>{b9f7bc64-7924-4928-910d-2e9e03dc682f}</Project>
79-
<Name>WebApiContrib.CollectionJson</Name>
80-
</ProjectReference>
81-
</ItemGroup>
82-
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
83-
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" />
84-
<Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''">
85-
<Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKeyword="BCLBUILD2001" />
86-
<Error Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
87-
</Target>
88-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
89-
Other similar extension points exist, see Microsoft.Common.targets.
90-
<Target Name="BeforeBuild">
91-
</Target>
92-
<Target Name="AfterBuild">
93-
</Target>
94-
-->
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{E86C985A-ECB3-4065-98C3-CBB2039C7170}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>CollectionJson.Client</RootNamespace>
11+
<AssemblyName>CollectionJson.Client</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<TargetFrameworkProfile>Profile78</TargetFrameworkProfile>
14+
<FileAlignment>512</FileAlignment>
15+
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
16+
<RestorePackages>true</RestorePackages>
17+
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
18+
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
19+
</PropertyGroup>
20+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21+
<DebugSymbols>true</DebugSymbols>
22+
<DebugType>full</DebugType>
23+
<Optimize>false</Optimize>
24+
<OutputPath>bin\Debug\</OutputPath>
25+
<DefineConstants>DEBUG;TRACE</DefineConstants>
26+
<ErrorReport>prompt</ErrorReport>
27+
<WarningLevel>4</WarningLevel>
28+
<Prefer32Bit>false</Prefer32Bit>
29+
</PropertyGroup>
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31+
<DebugType>pdbonly</DebugType>
32+
<Optimize>true</Optimize>
33+
<OutputPath>bin\Release\</OutputPath>
34+
<DefineConstants>TRACE</DefineConstants>
35+
<ErrorReport>prompt</ErrorReport>
36+
<WarningLevel>4</WarningLevel>
37+
<Prefer32Bit>false</Prefer32Bit>
38+
</PropertyGroup>
39+
<ItemGroup>
40+
<Reference Include="Newtonsoft.Json">
41+
<HintPath>..\packages\Newtonsoft.Json.6.0.3\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
42+
</Reference>
43+
<Reference Include="System" />
44+
<Reference Include="System.Core" />
45+
<Reference Include="System.Net.Http">
46+
<HintPath>..\packages\Microsoft.Net.Http.2.2.22\lib\portable-net40+sl4+win8+wp71+wpa81\System.Net.Http.dll</HintPath>
47+
</Reference>
48+
<Reference Include="System.Net.Http.Extensions">
49+
<HintPath>..\packages\Microsoft.Net.Http.2.2.22\lib\portable-net40+sl4+win8+wp71+wpa81\System.Net.Http.Extensions.dll</HintPath>
50+
</Reference>
51+
<Reference Include="System.Net.Http.Formatting">
52+
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.0\lib\portable-wp8+netcore45+net45+wp81+wpa81\System.Net.Http.Formatting.dll</HintPath>
53+
</Reference>
54+
<Reference Include="System.Net.Http.Primitives">
55+
<HintPath>..\packages\Microsoft.Net.Http.2.2.22\lib\portable-net40+sl4+win8+wp71+wpa81\System.Net.Http.Primitives.dll</HintPath>
56+
</Reference>
57+
<Reference Include="System.Xml.Linq" />
58+
<Reference Include="Microsoft.CSharp" />
59+
<Reference Include="System.Xml" />
60+
</ItemGroup>
61+
<ItemGroup>
62+
<Compile Include="..\..\common\VersionInfo.cs">
63+
<Link>Properties\VersionInfo.cs</Link>
64+
</Compile>
65+
<Compile Include="CollectionJsonFormatter.cs" />
66+
<Compile Include="Properties\AssemblyInfo.cs" />
67+
<Compile Include="ReadDocumentExtensions.cs" />
68+
</ItemGroup>
69+
<ItemGroup>
70+
<None Include="app.config" />
71+
<None Include="packages.config" />
72+
<None Include="CollectionJson.Client.nuspec">
73+
<SubType>Designer</SubType>
74+
</None>
75+
</ItemGroup>
76+
<ItemGroup>
77+
<ProjectReference Include="..\CollectionJson\CollectionJson.csproj">
78+
<Project>{b9f7bc64-7924-4928-910d-2e9e03dc682f}</Project>
79+
<Name>CollectionJson</Name>
80+
</ProjectReference>
81+
</ItemGroup>
82+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
83+
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" />
84+
<Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''">
85+
<Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKeyword="BCLBUILD2001" />
86+
<Error Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
87+
</Target>
88+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
89+
Other similar extension points exist, see Microsoft.Common.targets.
90+
<Target Name="BeforeBuild">
91+
</Target>
92+
<Target Name="AfterBuild">
93+
</Target>
94+
-->
9595
</Project>

0 commit comments

Comments
 (0)