-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to VS 2019 new project file format
- Loading branch information
Showing
14 changed files
with
1,688 additions
and
1,133 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{8A198528-4367-4670-8F24-863404FA0A9C}</ProjectGuid> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Dotc.Common</RootNamespace> | ||
<AssemblyName>Dotc.Common</AssemblyName> | ||
<FileAlignment>512</FileAlignment> | ||
<SccProjectName>SAK</SccProjectName> | ||
<SccLocalPath>SAK</SccLocalPath> | ||
<SccAuxPath>SAK</SccAuxPath> | ||
<SccProvider>SAK</SccProvider> | ||
<CodeAnalysisRuleSet>..\DotConsulting.ruleset</CodeAnalysisRuleSet> | ||
<TargetFrameworkProfile /> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>TRACE;DEBUG</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SignAssembly>false</SignAssembly> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyOriginatorKeyFile>..\Infra.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Windows.Forms" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="..\DotAssemblyInfo.cs"> | ||
<Link>Properties\DotAssemblyInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="..\InfraAssemblyInfo.cs"> | ||
<Link>Properties\InfraAssemblyInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="ClipboardHelper.cs" /> | ||
<Compile Include="GlobalSuppressions.cs" /> | ||
<Compile Include="NativeMethods.cs" /> | ||
<Compile Include="ObservableObject.cs" /> | ||
<Compile Include="SqlFormatProvider.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="UriExtensions.cs" /> | ||
<Compile Include="UrlFormatProvider.cs" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
<!-- <Import Project="..\VersionSpecificSymbols.Common.prop" /> | ||
--> | ||
<ItemGroup> | ||
<!--<PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> | ||
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />--> | ||
</ItemGroup> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{8A198528-4367-4670-8F24-863404FA0A9C}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Dotc.Common</RootNamespace> | ||
<AssemblyName>Dotc.Common</AssemblyName> | ||
<FileAlignment>512</FileAlignment> | ||
<SccProjectName>SAK</SccProjectName> | ||
<SccLocalPath>SAK</SccLocalPath> | ||
<SccAuxPath>SAK</SccAuxPath> | ||
<SccProvider>SAK</SccProvider> | ||
<CodeAnalysisRuleSet>..\DotConsulting.ruleset</CodeAnalysisRuleSet> | ||
<TargetFrameworkProfile /> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>TRACE;DEBUG</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SignAssembly>false</SignAssembly> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyOriginatorKeyFile>..\Infra.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Windows.Forms" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="..\DotAssemblyInfo.cs"> | ||
<Link>Properties\DotAssemblyInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="..\InfraAssemblyInfo.cs"> | ||
<Link>Properties\InfraAssemblyInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="ClipboardHelper.cs" /> | ||
<Compile Include="GlobalSuppressions.cs" /> | ||
<Compile Include="NativeMethods.cs" /> | ||
<Compile Include="ObservableObject.cs" /> | ||
<Compile Include="SqlFormatProvider.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="UriExtensions.cs" /> | ||
<Compile Include="UrlFormatProvider.cs" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
<!-- <Import Project="..\VersionSpecificSymbols.Common.prop" /> | ||
--> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,128 +1,49 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{4E9223B9-1BC2-45EA-97E0-BA0E1D7A1961}</ProjectGuid> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Dotc.MQ.Websphere</RootNamespace> | ||
<AssemblyName>Dotc.MQ.Websphere</AssemblyName> | ||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<SccProjectName>SAK</SccProjectName> | ||
<SccLocalPath>SAK</SccLocalPath> | ||
<SccAuxPath>SAK</SccAuxPath> | ||
<SccProvider>SAK</SccProvider> | ||
<TargetFrameworkProfile /> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>TRACE;DEBUG</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<CodeAnalysisRuleSet>..\DotConsulting.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<CodeAnalysisRuleSet>..\DotConsulting.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SignAssembly>false</SignAssembly> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyOriginatorKeyFile>..\MQ.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="amqmdnet, Version=9.0.0.0, Culture=neutral, PublicKeyToken=dd3cb1c9aae9ec97, processorArchitecture=MSIL"> | ||
<SpecificVersion>True</SpecificVersion> | ||
<HintPath>..\..\libs\amqmdnet.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="System.ComponentModel.Composition" /> | ||
<!--<ItemGroup> | ||
<Reference Include="System.configuration" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
</ItemGroup>--> | ||
<ItemGroup> | ||
<Compile Include="..\DotAssemblyInfo.cs"> | ||
<Link>Properties\DotAssemblyInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="..\MQAssemblyInfo.Client.cs"> | ||
<Link>Properties\MQAssemblyInfo.Client.cs</Link> | ||
</Compile> | ||
<Compile Include="Configuration\WSConfiguration.cs" /> | ||
<Compile Include="ExtensionMethods.cs" /> | ||
<Compile Include="GlobalSuppressions.cs" /> | ||
<Compile Include="MCASecurityExit.cs" /> | ||
<Compile Include="PCF\CMQCFC.cs" /> | ||
<Compile Include="PCF\MQCFBS.cs" /> | ||
<Compile Include="PCF\MQCFH.cs" /> | ||
<Compile Include="PCF\MQCFIL.cs" /> | ||
<Compile Include="PCF\MQCFIN.cs" /> | ||
<Compile Include="PCF\MQCFSL.cs" /> | ||
<Compile Include="PCF\MQCFST.cs" /> | ||
<Compile Include="PCF\PCFAgent.cs" /> | ||
<Compile Include="PCF\PCFAgentResponseTracker.cs" /> | ||
<Compile Include="PCF\PCFException.cs" /> | ||
<Compile Include="PCF\PCFHeader.cs" /> | ||
<Compile Include="PCF\PCFMessage.cs" /> | ||
<Compile Include="PCF\PCFMessageAgent.cs" /> | ||
<Compile Include="PCF\PCFParameter.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="SecureStringHelper.cs" /> | ||
<Compile Include="SecurityExit.cs" /> | ||
<Compile Include="WSChannel.cs" /> | ||
<Compile Include="WSChannelType.cs" /> | ||
<Compile Include="WsDump2.cs" /> | ||
<Compile Include="WsListener.cs" /> | ||
<Compile Include="WSMessage.cs" /> | ||
<Compile Include="WSMessageAgent.cs" /> | ||
<Compile Include="WsObjectProvider.cs" /> | ||
<Compile Include="WSQueue.cs" /> | ||
<Compile Include="WSQueueManager.cs" /> | ||
<Compile Include="WSQueueManagerFactory.cs" /> | ||
<Compile Include="WSObjectNameFilter.cs" /> | ||
<Compile Include="WSQueueType.cs" /> | ||
<Compile Include="WSSoftwareInfo.cs" /> | ||
<Compile Include="WsUtils.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Dotc.Common\Dotc.Common.csproj"> | ||
<Project>{8a198528-4367-4670-8f24-863404fa0a9c}</Project> | ||
<Name>Dotc.Common</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\Dotc.MQ\Dotc.MQ.csproj"> | ||
<Project>{f567819e-199b-48ce-8ff9-cc1d803b3abb}</Project> | ||
<Name>Dotc.MQ</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\Dotc.Common\Dotc.Common.csproj" /> | ||
<ProjectReference Include="..\Dotc.MQ\Dotc.MQ.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\mqep.licenseheader"> | ||
<Link>mqep.licenseheader</Link> | ||
</None> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> | ||
<PackageReference Include="System.ComponentModel.Composition" Version="4.7.0" /> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" /> | ||
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Remove="WSDump.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="amqmdnet"> | ||
<HintPath>..\..\Libs\amqmdnet.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.