Skip to content

Commit

Permalink
Create central assembly version property for WCF assemblies. (#4221)
Browse files Browse the repository at this point in the history
* Since all WCF assemblies share the same assembly version number no need to update more than one location.

Co-authored-by: Hong Li <hongli@microsoft.com>
  • Loading branch information
StephenBonikowsky and HongGit authored Oct 16, 2020
1 parent 1696a48 commit 420f14c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<AssemblyName>System.Private.ServiceModel</AssemblyName>
<RootNamespace>System.ServiceModel</RootNamespace>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<TargetFrameworks>netstandard2.0;net461;</TargetFrameworks>
<AssemblyName>System.ServiceModel.Duplex</AssemblyName>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<AssemblyName>System.ServiceModel.Duplex</AssemblyName>
<CLSCompliant>true</CLSCompliant>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<TargetFrameworks>netstandard2.0;net461;</TargetFrameworks>
<AssemblyName>System.ServiceModel.Http</AssemblyName>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<AssemblyName>System.ServiceModel.Http</AssemblyName>
<CLSCompliant>true</CLSCompliant>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<TargetFrameworks>netstandard2.0;net461;</TargetFrameworks>
<AssemblyName>System.ServiceModel.NetTcp</AssemblyName>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<AssemblyName>System.ServiceModel.NetTcp</AssemblyName>
<CLSCompliant>true</CLSCompliant>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<TargetFrameworks>netstandard2.0;netcoreapp2.1;net461;</TargetFrameworks>
<AssemblyName>System.ServiceModel.Primitives</AssemblyName>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<AssemblyName>System.ServiceModel.Primitives</AssemblyName>
<CLSCompliant>true</CLSCompliant>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<TargetFrameworks>netstandard2.0;net461;</TargetFrameworks>
<AssemblyName>System.ServiceModel.Security</AssemblyName>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>$(WcfAssemblyVersion)</AssemblyVersion>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
<AssemblyName>System.ServiceModel.Security</AssemblyName>
<CLSCompliant>true</CLSCompliant>
Expand Down

0 comments on commit 420f14c

Please sign in to comment.