-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathValidation.Integration.WCF.csproj
More file actions
133 lines (109 loc) · 5.28 KB
/
Validation.Integration.WCF.csproj
File metadata and controls
133 lines (109 loc) · 5.28 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\package.props" />
<PropertyGroup>
<TargetFrameworks>net45;net46;net47;netstandard2.0;netcoreapp2.0;netcoreapp3.0</TargetFrameworks>
<AssemblyVersion>$(MajorVersion).0.0.0</AssemblyVersion>
<FileVersion>$(Version).$(Revision)</FileVersion>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>$(PreAssemblyName).Validation.Integration.WCF</AssemblyName>
<RootNamespace>$(PreAssemblyName).Validation.Integration.WCF</RootNamespace>
<AssemblyTitle>Enterprise Library Validation Application Block Integration with WCF</AssemblyTitle>
<PackageId>$(PrePackageName).Validation.Integration.WCF$(PostPackageName)</PackageId>
<Title>Enterprise Library Validation Application Block Integration with WCF</Title>
<Description>This component allows the Validation Application Block to integrate with WCF.</Description>
<Summary>This component allows the Validation Application Block to integrate with WCF.</Summary>
<PackageTags>entlib entlib6 Enterprise Library validation validator vab WCF service LOB futures OSS</PackageTags>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\EnterpriseLibrary.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
</PropertyGroup>
<PropertyGroup>
<EntLibCommon>..\..\..\..\Common\source\Src\Common\Common.csproj</EntLibCommon>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="$(EntLibCommon)" Condition="Exists('$(EntLibCommon)') AND '$(EntLibDependencyType)' == 'Project'" />
<PackageReference Include="$(PrePackageName).Common$(PostPackageName)" Version="$(EntLibCommonVersion)" Condition="!Exists('$(EntLibCommon)') OR '$(EntLibDependencyType)' == 'Package'" />
<ProjectReference Include="..\Validation\Validation.csproj" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('netstandard')) OR $(TargetFramework.StartsWith('netcoreapp'))">
<PackageReference Include="System.ServiceModel.Primitives" Version="$(SystemServiceModelPrimitivesVersion)" />
<Compile Remove="ValidationBehavior.cs" />
<Compile Remove="ValidationBehaviorAttribute.cs" />
<Compile Remove="ValidationBindingElementExtension.cs" />
<Compile Remove="ValidationElement.cs" />
<Compile Remove="ValidationParameterInspector.cs" />
</ItemGroup>
<ItemGroup Condition="!$(TargetFramework.StartsWith('netstandard')) AND !$(TargetFramework.StartsWith('netcoreapp'))">
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.configuration" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\GlobalAssemblyInfo.cs">
<Link>GlobalAssemblyInfo.cs</Link>
</Compile>
<None Include="..\..\Validation.licenseheader">
<Link>Validation.licenseheader</Link>
</None>
<Compile Update="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Content Include="..\..\NuGet\Readme.txt">
<Pack>true</Pack>
<Visible>False</Visible>
<PackagePath></PackagePath>
</Content>
<Content Include="..\..\NuGet\tools\SharedCommon\install.ps1">
<Pack>true</Pack>
<Visible>False</Visible>
<PackagePath>tools</PackagePath>
</Content>
<Content Include="..\..\NuGet\tools\SharedCommon\Utils.psm1">
<Pack>true</Pack>
<Visible>False</Visible>
<PackagePath>tools</PackagePath>
</Content>
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('netstandard')) OR $(TargetFramework.StartsWith('netcoreapp'))">
</ItemGroup>
<ItemGroup Condition="!$(TargetFramework.StartsWith('netstandard')) AND !$(TargetFramework.StartsWith('netcoreapp'))">
</ItemGroup>
<PropertyGroup>
<OutputPath>$(SolutionDir)..\bin\$(Configuration)\</OutputPath>
<DocumentationFile>$(SolutionDir)..\bin\$(Configuration)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
<CodeAnalysisRuleSet>..\..\EnterpriseLibrary.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
</Project>