Skip to content

Commit

Permalink
Added conditional build for x86/x64 platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
spaghettidba committed Sep 25, 2018
1 parent f708f93 commit 51c530a
Show file tree
Hide file tree
Showing 10 changed files with 235 additions and 37 deletions.
20 changes: 14 additions & 6 deletions Setup/Setup.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,23 @@
<OutputType>Package</OutputType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>Debug</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<DefineConstants>Debug</DefineConstants>
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="harvest.wxs" />
<Compile Include="Product.wxs" />
Expand All @@ -38,7 +47,6 @@
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
</Target>

<!--
To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Wix.targets.
Expand All @@ -48,15 +56,15 @@
</Target>
-->
<Target Name="BeforeBuild">
<GetAssemblyIdentity AssemblyFiles="..\XESmartTarget\bin\$(Configuration)\XESmartTarget.exe">
<GetAssemblyIdentity AssemblyFiles="..\XESmartTarget\bin\$(Platform)\$(Configuration)\XESmartTarget.exe">
<Output TaskParameter="Assemblies" ItemName="AssemblyVersion" />
</GetAssemblyIdentity>
<PropertyGroup>
<DefineConstants>BuildVersion=%(AssemblyVersion.Version)</DefineConstants>
</PropertyGroup>
<HeatDirectory OutputFile="$(ProjectDir)\harvest.wxs" Directory="..\XESmartTarget\bin\$(Configuration)" ComponentGroupName="ProductComponents" DirectoryRefId="INSTALLFOLDER" AutogenerateGuids="true" PreprocessorVariable="var.XESmartTarget.TargetDir" SuppressRegistry="true" SuppressRootDirectory="true" ToolPath="$(WixToolPath)" NoLogo="true" />
<HeatDirectory OutputFile="$(ProjectDir)\harvest.wxs" Directory="..\XESmartTarget\bin\$(Platform)\$(Configuration)" ComponentGroupName="ProductComponents" DirectoryRefId="INSTALLFOLDER" AutogenerateGuids="true" PreprocessorVariable="var.XESmartTarget.TargetDir" SuppressRegistry="true" SuppressRootDirectory="true" ToolPath="$(WixToolPath)" NoLogo="true" />
</Target>
<PropertyGroup>
<PostBuildEvent>move /Y "!(TargetPath)" "$(TargetDir)$(SolutionName)$(TargetExt)"</PostBuildEvent>
<PostBuildEvent>move /Y "!(TargetPath)" "$(TargetDir)$(SolutionName)_$(Platform)$(TargetExt)"</PostBuildEvent>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.8.2")]
[assembly: AssemblyFileVersion("1.0.8.2")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
65 changes: 60 additions & 5 deletions XESmartTarget.Core/XESmartTarget.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>
Expand All @@ -11,6 +11,8 @@
<AssemblyName>XESmartTarget.Core</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -29,20 +31,61 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<CurrentPlatform>x86</CurrentPlatform>
<CurrentPlatform Condition="'$(PROCESSOR_ARCHITECTURE)'=='AMD64' or '$(PROCESSOR_ARCHITEW6432)'=='AMD64'">x64</CurrentPlatform>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="CsvHelper, Version=6.0.0.0, Culture=neutral, PublicKeyToken=8c4959082be5c823, processorArchitecture=MSIL">
<HintPath>..\packages\CsvHelper.6.1.0\lib\net45\CsvHelper.dll</HintPath>
</Reference>
<Reference Include="DouglasCrockford.JsMin, Version=1.1.3.0, Culture=neutral, PublicKeyToken=99147aa1108448b7, processorArchitecture=MSIL">
<HintPath>..\packages\DouglasCrockford.JsMin.1.1.3\lib\net40-client\DouglasCrockford.JsMin.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SqlServer.XE.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=AMD64">
<Reference Include="Microsoft.SqlServer.Xe.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=AMD64">
<SpecificVersion>False</SpecificVersion>
<HintPath>C:\Program Files\Microsoft SQL Server\140\Shared\Microsoft.SqlServer.XE.Core.dll</HintPath>
<HintPath>..\packages\Microsoft.SqlServer.SqlManagementObjects.140.17283.0\runtimes\win-$(CurrentPlatform)\native\Microsoft.SqlServer.Xe.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SqlServer.XEvent.Linq, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=AMD64">
<SpecificVersion>False</SpecificVersion>
<HintPath>C:\Program Files\Microsoft SQL Server\140\Shared\Microsoft.SqlServer.XEvent.Linq.dll</HintPath>
<HintPath>..\packages\Microsoft.SqlServer.SqlManagementObjects.140.17279.0\runtimes\win-$(CurrentPlatform)\native\Microsoft.SqlServer.XEvent.Linq.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
<HintPath>..\packages\NLog.4.4.12\lib\net45\NLog.dll</HintPath>
Expand All @@ -59,12 +102,14 @@
<HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
</Reference>
<Reference Include="System.Web.Extensions" />
<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" />
<Reference Include="System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedAssemblyInfo.cs">
Expand Down Expand Up @@ -94,6 +139,9 @@
<Compile Include="Utils\XEventDataTableAdapter.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config">
<SubType>Designer</SubType>
</None>
<None Include="Config\Sample.json" />
<None Include="packages.config" />
</ItemGroup>
Expand All @@ -104,6 +152,13 @@
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Microsoft.SqlServer.SqlManagementObjects.140.17283.0\build\net40\Microsoft.SqlServer.SqlManagementObjects.targets" Condition="Exists('..\packages\Microsoft.SqlServer.SqlManagementObjects.140.17283.0\build\net40\Microsoft.SqlServer.SqlManagementObjects.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Microsoft.SqlServer.SqlManagementObjects.140.17283.0\build\net40\Microsoft.SqlServer.SqlManagementObjects.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.SqlServer.SqlManagementObjects.140.17283.0\build\net40\Microsoft.SqlServer.SqlManagementObjects.targets'))" />
</Target>
<!-- 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">
Expand Down
15 changes: 15 additions & 0 deletions XESmartTarget.Core/app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.SqlServer.XE.Core" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-14.100.0.0" newVersion="14.100.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.SqlServer.XEvent.Linq" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-14.100.0.0" newVersion="14.100.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
1 change: 1 addition & 0 deletions XESmartTarget.Core/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<package id="CsvHelper" version="6.1.0" targetFramework="net452" />
<package id="DouglasCrockford.JsMin" version="1.1.3" targetFramework="net452" />
<package id="Microsoft.NETCore.Platforms" version="1.1.0" targetFramework="net452" />
<package id="Microsoft.SqlServer.SqlManagementObjects" version="140.17283.0" targetFramework="net452" />
<package id="NETStandard.Library" version="1.6.1" targetFramework="net452" />
<package id="NLog" version="4.4.12" targetFramework="net452" />
<package id="SmartFormat.Net" version="2.1.0.2" targetFramework="net452" />
Expand Down
46 changes: 33 additions & 13 deletions XESmartTarget.sln
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
VisualStudioVersion = 15.0.26730.10
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XESmartTarget", "XESmartTarget\XESmartTarget.csproj", "{08A489CE-617E-402B-BEE5-C8EB3FB43E60}"
ProjectSection(ProjectDependencies) = postProject
{676F3A20-E149-49B1-AFA9-150DE2E06812} = {676F3A20-E149-49B1-AFA9-150DE2E06812}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XESmartTarget.Core", "XESmartTarget.Core\XESmartTarget.Core.csproj", "{C9C968D1-4AA9-4674-BBE4-C08B9C169147}"
EndProject
Expand All @@ -19,41 +22,58 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Debug|Any CPU.Build.0 = Debug|Any CPU
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Debug|x86.ActiveCfg = Debug|Any CPU
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Debug|x86.Build.0 = Debug|Any CPU
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Debug|x64.ActiveCfg = Debug|x64
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Debug|x64.Build.0 = Debug|x64
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Debug|x86.ActiveCfg = Debug|x86
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Debug|x86.Build.0 = Debug|x86
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Release|Any CPU.ActiveCfg = Release|Any CPU
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Release|Any CPU.Build.0 = Release|Any CPU
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Release|x86.ActiveCfg = Release|Any CPU
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Release|x86.Build.0 = Release|Any CPU
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Release|x64.ActiveCfg = Release|x64
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Release|x64.Build.0 = Release|x64
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Release|x86.ActiveCfg = Release|x86
{08A489CE-617E-402B-BEE5-C8EB3FB43E60}.Release|x86.Build.0 = Release|x86
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Debug|x86.ActiveCfg = Debug|Any CPU
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Debug|x86.Build.0 = Debug|Any CPU
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Debug|x64.ActiveCfg = Debug|x64
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Debug|x64.Build.0 = Debug|x64
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Debug|x86.ActiveCfg = Debug|x86
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Debug|x86.Build.0 = Debug|x86
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Release|Any CPU.Build.0 = Release|Any CPU
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Release|x86.ActiveCfg = Release|Any CPU
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Release|x86.Build.0 = Release|Any CPU
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Release|x64.ActiveCfg = Release|x64
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Release|x64.Build.0 = Release|x64
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Release|x86.ActiveCfg = Release|x86
{C9C968D1-4AA9-4674-BBE4-C08B9C169147}.Release|x86.Build.0 = Release|x86
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Debug|Any CPU.ActiveCfg = Debug|x86
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Debug|x64.ActiveCfg = Debug|x64
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Debug|x64.Build.0 = Debug|x64
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Debug|x86.ActiveCfg = Debug|x86
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Debug|x86.Build.0 = Debug|x86
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Release|Any CPU.ActiveCfg = Release|x86
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Release|x64.ActiveCfg = Release|x64
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Release|x64.Build.0 = Release|x64
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Release|x86.ActiveCfg = Release|x86
{015A6270-8FB2-4FE6-8A22-E4BC554AC734}.Release|x86.Build.0 = Release|x86
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Debug|Any CPU.Build.0 = Debug|Any CPU
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Debug|x86.ActiveCfg = Debug|Any CPU
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Debug|x86.Build.0 = Debug|Any CPU
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Debug|x64.ActiveCfg = Debug|x64
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Debug|x64.Build.0 = Debug|x64
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Debug|x86.ActiveCfg = Debug|x86
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Debug|x86.Build.0 = Debug|x86
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Release|Any CPU.ActiveCfg = Release|Any CPU
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Release|Any CPU.Build.0 = Release|Any CPU
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Release|x86.ActiveCfg = Release|Any CPU
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Release|x86.Build.0 = Release|Any CPU
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Release|x64.ActiveCfg = Release|x64
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Release|x64.Build.0 = Release|x64
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Release|x86.ActiveCfg = Release|x86
{676F3A20-E149-49B1-AFA9-150DE2E06812}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
21 changes: 17 additions & 4 deletions XESmartTarget/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.SqlServer.XE.Core" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-14.100.0.0" newVersion="14.100.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.SqlServer.XEvent.Linq" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-14.100.0.0" newVersion="14.100.0.0" />
</dependentAssembly>
</assemblyBinding>
<gcConcurrent enabled="false" />
</runtime>
</configuration>
Loading

0 comments on commit 51c530a

Please sign in to comment.