-
Notifications
You must be signed in to change notification settings - Fork 472
/
Copy pathCastle.Core.csproj
55 lines (43 loc) · 1.83 KB
/
Castle.Core.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\buildscripts\common.props"></Import>
<PropertyGroup>
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<PackageId>Castle.Core</PackageId>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageOutputPath>../../build/</PackageOutputPath>
<AssemblyName>Castle.Core</AssemblyName>
<RootNamespace>Castle</RootNamespace>
<AssemblyTitle>Castle Core</AssemblyTitle>
<Description>Castle Core, including DynamicProxy, Logging Abstractions and DictionaryAdapter</Description>
<AssemblyOriginatorKeyFile>..\..\buildscripts\CastleKey.snk</AssemblyOriginatorKeyFile>
<SignAssembly>True</SignAssembly>
<PublicSign Condition="'$(OS)'=='Unix'">true</PublicSign>
<PackageTags>castle dynamicproxy dynamic proxy dynamicproxy2 dictionaryadapter emailsender</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Remove="DynamicProxy\DynProxy.snk" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="DynamicProxy\DynProxy.snk" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net462'">
<Reference Include="System.Configuration" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='netstandard2.1'">
<PackageReference Include="System.Diagnostics.EventLog" Version="4.7.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net6.0'">
<PackageReference Include="System.Diagnostics.EventLog" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\buildscripts\CommonAssemblyInfo.cs" />
</ItemGroup>
</Project>