-
Notifications
You must be signed in to change notification settings - Fork 487
Expand file tree
/
Copy pathCastle.Core.csproj
More file actions
42 lines (33 loc) · 1.36 KB
/
Castle.Core.csproj
File metadata and controls
42 lines (33 loc) · 1.36 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\buildscripts\common.props"></Import>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net462;netstandard2.0</TargetFrameworks>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<PackageId>Castle.Core</PackageId>
<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>
<Compile Include="..\..\buildscripts\CommonAssemblyInfo.cs" />
</ItemGroup>
</Project>