-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Crude project setup for the better support of lifestyles for differen…
…t framework runtime targets (#283)
- Loading branch information
Gavin van der Merwe
committed
Jul 5, 2017
1 parent
8e314b2
commit 05ecdde
Showing
4 changed files
with
147 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...r.Lifestyles.MSDependencyInjection/Castle.Windsor.Lifestyles.MSDependencyInjection.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
41 changes: 41 additions & 0 deletions
41
src/Castle.Windsor.Lifestyles.Owin/Castle.Windsor.Lifestyles.Owin.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
41 changes: 41 additions & 0 deletions
41
src/Castle.Windsor.Lifestyles.SystemWeb/Castle.Windsor.Lifestyles.SystemWeb.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |