Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<SystemConfigurationConfigurationManagerVersion>4.5.0</SystemConfigurationConfigurationManagerVersion>
<SystemComponentModelAnnotationsVersion>4.5.*</SystemComponentModelAnnotationsVersion>
<MicrosoftAspNetCoreMvcCoreVersion>2.0.*</MicrosoftAspNetCoreMvcCoreVersion>
<SystemServiceModelPrimitivesVersion>4.8.0</SystemServiceModelPrimitivesVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
8 changes: 7 additions & 1 deletion source/Src/Validation.WCF/Validation.Integration.WCF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Import Project="..\..\..\package.props" />

<PropertyGroup>
<TargetFrameworks>net45;net46;net47</TargetFrameworks>
<TargetFrameworks>net45;net46;net47;netstandard2.0;netcoreapp2.0;netcoreapp3.0</TargetFrameworks>

<AssemblyVersion>$(MajorVersion).0.0.0</AssemblyVersion>
<FileVersion>$(Version).$(Revision)</FileVersion>
Expand Down Expand Up @@ -36,6 +36,12 @@
</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'))">
Expand Down