forked from dotnet/wcf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dotnet-svcutil: update NamedPipeMetadataImporter to remove the intern…
…al asset folder. (dotnet#5582) * dotnet-svcutil: update NamedPipeMetadataImporter to remove the internal asset folder. * Remove unnecessary package branding properties. * Update folder name from internalAssets to dependencies. * update: directly packaging without copying NamedPipeMetadataImporter binary. * update. * Update: handle 6.0 and 8.0 target framework projects properly. * update.
- Loading branch information
1 parent
c8407ba
commit 04a3bee
Showing
14 changed files
with
77 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 21 additions & 8 deletions
29
...soft.Svcutil.NamedPipeMetadataImporter/Microsoft.Svcutil.NamedPipeMetadataImporter.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net6.0;net462</TargetFrameworks> | ||
<PropertyGroup> | ||
<AssemblyVersionFile>$(IntermediateOutputPath)\$(TargetFramework)\$(MSBuildProjectName).$(TargetFramework).version.cs</AssemblyVersionFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net6.0;net8.0;net462</TargetFrameworks> | ||
<RootNamespace>Microsoft.Tools.ServiceModel.Svcutil</RootNamespace> | ||
<AssemblyName>$(MSBuildProjectName)</AssemblyName> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.ServiceModel.NetNamedPipe" Version="6.0.*" Condition="'$(TargetFramework)' == 'net6.0'"> | ||
<PrivateAssets>contentfiles;analyzers;build</PrivateAssets> | ||
</PackageReference> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.ServiceModel.NetNamedPipe" Version="6.*" Condition="'$(TargetFramework)' == 'net6.0'"> | ||
<IncludeAssets>all</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="System.ServiceModel.NetNamedPipe" Version="8.*" Condition="'$(TargetFramework)' == 'net8.0'"> | ||
<IncludeAssets>all</IncludeAssets> | ||
</PackageReference> | ||
<Reference Include="System.ServiceModel" Condition="'$(TargetFramework)' == 'net462'" /> | ||
</ItemGroup> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<DotNetUseShippingVersions>true</DotNetUseShippingVersions> | ||
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<IncludeSource>false</IncludeSource> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-11.5 KB
...net-svcutil/lib/src/internalAssets/net462/Microsoft.Svcutil.NamedPipeMetadataImporter.dll
Binary file not shown.
Binary file removed
BIN
-22.2 KB
src/dotnet-svcutil/lib/src/internalAssets/net6.0/Microsoft.Extensions.ObjectPool.dll
Binary file not shown.
Binary file removed
BIN
-16.5 KB
...net-svcutil/lib/src/internalAssets/net6.0/Microsoft.Svcutil.NamedPipeMetadataImporter.dll
Binary file not shown.
Binary file removed
BIN
-194 KB
src/dotnet-svcutil/lib/src/internalAssets/net6.0/System.ServiceModel.NetFramingBase.dll
Binary file not shown.
Binary file removed
BIN
-53.9 KB
src/dotnet-svcutil/lib/src/internalAssets/net6.0/System.ServiceModel.NetNamedPipe.dll
Binary file not shown.
Binary file removed
BIN
-2.29 MB
src/dotnet-svcutil/lib/src/internalAssets/net6.0/System.ServiceModel.Primitives.dll
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters