Skip to content

Commit

Permalink
Crude project setup for the better support of lifestyles for differen…
Browse files Browse the repository at this point in the history
…t framework runtime targets (#283)
  • Loading branch information
Gavin van der Merwe committed Jul 5, 2017
1 parent 8e314b2 commit 05ecdde
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 1 deletion.
25 changes: 24 additions & 1 deletion Castle.Windsor.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26403.7
VisualStudioVersion = 15.0.26430.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Castle.Windsor", "src\Castle.Windsor\Castle.Windsor.csproj", "{5F6A631E-8EB1-4BC1-826D-86D3059945B8}"
EndProject
Expand Down Expand Up @@ -37,6 +37,14 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BuildScripts", "buildscript
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Castle Facilities", "Castle Facilities", "{7935AFF5-BF6D-4D59-8D66-058B6557F70F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Castle Lifestyles", "Castle Lifestyles", "{345E0DBF-7D11-4995-BF14-4A8DDD145929}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Castle.Windsor.Lifestyles.MSDependencyInjection", "src\Castle.Windsor.Lifestyles.MSDependencyInjection\Castle.Windsor.Lifestyles.MSDependencyInjection.csproj", "{6ED94281-2001-42F9-99C8-783EA0F22915}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Castle.Windsor.Lifestyles.Owin", "src\Castle.Windsor.Lifestyles.Owin\Castle.Windsor.Lifestyles.Owin.csproj", "{34F32644-E388-42C5-B041-57FC9006F183}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Castle.Windsor.Lifestyles.SystemWeb", "src\Castle.Windsor.Lifestyles.SystemWeb\Castle.Windsor.Lifestyles.SystemWeb.csproj", "{5AEE35A8-BB72-430E-AE0D-DF9B59648E53}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -83,6 +91,18 @@ Global
{944CD23E-BEF8-4FBC-A76D-7BC85A7FB2F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{944CD23E-BEF8-4FBC-A76D-7BC85A7FB2F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{944CD23E-BEF8-4FBC-A76D-7BC85A7FB2F6}.Release|Any CPU.Build.0 = Release|Any CPU
{6ED94281-2001-42F9-99C8-783EA0F22915}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6ED94281-2001-42F9-99C8-783EA0F22915}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6ED94281-2001-42F9-99C8-783EA0F22915}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6ED94281-2001-42F9-99C8-783EA0F22915}.Release|Any CPU.Build.0 = Release|Any CPU
{34F32644-E388-42C5-B041-57FC9006F183}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{34F32644-E388-42C5-B041-57FC9006F183}.Debug|Any CPU.Build.0 = Debug|Any CPU
{34F32644-E388-42C5-B041-57FC9006F183}.Release|Any CPU.ActiveCfg = Release|Any CPU
{34F32644-E388-42C5-B041-57FC9006F183}.Release|Any CPU.Build.0 = Release|Any CPU
{5AEE35A8-BB72-430E-AE0D-DF9B59648E53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5AEE35A8-BB72-430E-AE0D-DF9B59648E53}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5AEE35A8-BB72-430E-AE0D-DF9B59648E53}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5AEE35A8-BB72-430E-AE0D-DF9B59648E53}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -96,5 +116,8 @@ Global
{2162E27E-E0EB-470A-95FD-9AD6B802D0AB} = {7935AFF5-BF6D-4D59-8D66-058B6557F70F}
{148CDE3A-7633-4C20-8E7E-24D5919ABACF} = {7935AFF5-BF6D-4D59-8D66-058B6557F70F}
{944CD23E-BEF8-4FBC-A76D-7BC85A7FB2F6} = {7E507A42-984B-470D-8A0C-648B9AF8E1DC}
{6ED94281-2001-42F9-99C8-783EA0F22915} = {345E0DBF-7D11-4995-BF14-4A8DDD145929}
{34F32644-E388-42C5-B041-57FC9006F183} = {345E0DBF-7D11-4995-BF14-4A8DDD145929}
{5AEE35A8-BB72-430E-AE0D-DF9B59648E53} = {345E0DBF-7D11-4995-BF14-4A8DDD145929}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;netstandard1.6</TargetFrameworks>
</PropertyGroup>

<Import Project="..\..\buildscripts\common.props"></Import>

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Castle.Windsor.Lifestyles.MSDependencyInjection</PackageId>
<Title>Castle Windsor Lifestyles MSDependencyInjection</Title>
<Description>Castle Windsor is best of breed, mature Inversion of Control container available for .NET.</Description>
<PackageTags>castle, windsor, inversionOfControl, DependencyInjection</PackageTags>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AssemblyName>Castle.Windsor</AssemblyName>
<RootNamespace>Castle</RootNamespace>
<Title>Castle Windsor</Title>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\buildscripts\CommonAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Castle.Core" Version="4.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net45'">
<Reference Include="System.Configuration" />
<Reference Include="System.Runtime.Remoting" />
<Reference Include="System.Web" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.6'">
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="4.3.0" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="1.1.2" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;netstandard1.6</TargetFrameworks>
</PropertyGroup>

<Import Project="..\..\buildscripts\common.props"></Import>

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Castle.Windsor.Lifestyles.Owin</PackageId>
<Title>Castle Windsor Lifestyles Owin</Title>
<Description>Castle Windsor is best of breed, mature Inversion of Control container available for .NET.</Description>
<PackageTags>castle, windsor, inversionOfControl, DependencyInjection</PackageTags>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AssemblyName>Castle.Windsor</AssemblyName>
<RootNamespace>Castle</RootNamespace>
<Title>Castle Windsor</Title>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\buildscripts\CommonAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Castle.Core" Version="4.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net45'">
<Reference Include="System.Configuration" />
<Reference Include="System.Runtime.Remoting" />
<Reference Include="System.Web" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.6'">
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="4.3.0" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="1.1.2" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net45;netstandard1.6</TargetFrameworks>
</PropertyGroup>

<Import Project="..\..\buildscripts\common.props"></Import>

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Castle.Windsor.Lifestyles.SystemWeb</PackageId>
<Title>Castle Windsor Lifestyles System Web</Title>
<Description>Castle Windsor is best of breed, mature Inversion of Control container available for .NET.</Description>
<PackageTags>castle, windsor, inversionOfControl, DependencyInjection</PackageTags>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AssemblyName>Castle.Windsor</AssemblyName>
<RootNamespace>Castle</RootNamespace>
<Title>Castle Windsor</Title>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\buildscripts\CommonAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Castle.Core" Version="4.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net45'">
<Reference Include="System.Configuration" />
<Reference Include="System.Runtime.Remoting" />
<Reference Include="System.Web" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.6'">
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="4.3.0" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="1.1.2" />
</ItemGroup>
</Project>

0 comments on commit 05ecdde

Please sign in to comment.