Skip to content

Commit ed85460

Browse files
authored
Remove support for BizTalk 2010, 2013 R1 and R2 (#5)
1 parent 6133524 commit ed85460

25 files changed

+34
-492
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1+
### 2.1.0 [Release] (1/18/2026)
2+
3+
* Remove support for BizTalk 2010, 2013 R1 and R2 (#3)
4+
15
### 2.0.1 [Release] (12/4/2017)
6+
27
* Fix the declaration of the .NET Framework dependency for VS 2012+ to allow .NET 4.5 or newer (#1)
38
* Reintroduce missing XML elements in VSIX manifests
49

-972 KB
Binary file not shown.
2 MB
Binary file not shown.

ToolsForVisualStudio.targets

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
Copyright (C) 2008-Present Thomas F. Abraham. All Rights Reserved.
55
Licensed under the MIT License. See License.txt in the project root.
66
-->
7-
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0" DefaultTargets="Build">
7+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0" DefaultTargets="Build">
88
<PropertyGroup>
9-
<VsixVersion>2.0.1.0</VsixVersion>
9+
<VsixVersion>2.1.0.0</VsixVersion>
1010
</PropertyGroup>
1111

1212
<PropertyGroup>
@@ -37,19 +37,13 @@
3737
</Target>
3838

3939
<Target Name="BuildAddin">
40-
<WriteXmlValue XmlFilename="src\Addin.VS2010\source.extension.vsixmanifest" XPath="//ns:Version" Namespace="http://schemas.microsoft.com/developer/vsx-schema/2010" Value="$(VsixVersion)" />
41-
<WriteXmlValue XmlFilename="src\Addin.VS2012\source.extension.vsixmanifest" XPath="//ns:Metadata/ns:Identity/@Version" Namespace="http://schemas.microsoft.com/developer/vsx-schema/2011" Value="$(VsixVersion)" />
42-
<WriteXmlValue XmlFilename="src\Addin.VS2013\source.extension.vsixmanifest" XPath="//ns:Metadata/ns:Identity/@Version" Namespace="http://schemas.microsoft.com/developer/vsx-schema/2011" Value="$(VsixVersion)" />
4340
<WriteXmlValue XmlFilename="src\Addin.VS2015\source.extension.vsixmanifest" XPath="//ns:Metadata/ns:Identity/@Version" Namespace="http://schemas.microsoft.com/developer/vsx-schema/2011" Value="$(VsixVersion)" />
4441

4542
<MSBuild Projects="src\DeploymentFrameworkForBizTalkAddin.sln" Properties="Configuration=Release;Platform=Any CPU" Targets="Rebuild" />
4643
</Target>
4744

4845
<Target Name="CopyAddin">
4946
<ItemGroup>
50-
<VsixFile Include="src\AddIn.VS2010\bin\release\DeploymentFrameworkForBizTalkToolsForVS2010.vsix" />
51-
<VsixFile Include="src\AddIn.VS2012\bin\release\DeploymentFrameworkForBizTalkToolsForVS2012.vsix" />
52-
<VsixFile Include="src\AddIn.VS2013\bin\release\DeploymentFrameworkForBizTalkToolsForVS2013.vsix" />
5347
<VsixFile Include="src\AddIn.VS2015\bin\release\DeploymentFrameworkForBizTalkToolsForVS2015.vsix" />
5448
</ItemGroup>
5549

azure-pipelines.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/AddIn.ProjectTemplate/DFBT.vstemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<TemplateContent>
1515
</TemplateContent>
1616
<WizardExtension>
17-
<Assembly>DeploymentFxForBizTalkAddin.ProjectWizard, Version=2.0.1.0, Culture=neutral, PublicKeyToken=e748234cd372cc72</Assembly>
17+
<Assembly>DeploymentFxForBizTalkAddin.ProjectWizard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=e748234cd372cc72</Assembly>
1818
<FullClassName>DeploymentFramework.VisualStudioAddIn.ProjectWizard.AddProjectWizard</FullClassName>
1919
</WizardExtension>
2020
</VSTemplate>

src/AddIn.ProjectWizard.Test/DeploymentFrameworkForBizTalkAddin.ProjectWizard.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>VisualStudioAddIn.ProjectWizard.Test</RootNamespace>
1212
<AssemblyName>DeploymentFxForBizTalkAddin.ProjectWizard.Test</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<TargetFrameworkProfile />
1616
</PropertyGroup>

src/AddIn.ProjectWizard/DeploymentFrameworkForBizTalkAddin.ProjectWizard.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>DeploymentFramework.VisualStudioAddIn.ProjectWizard</RootNamespace>
1212
<AssemblyName>DeploymentFxForBizTalkAddin.ProjectWizard</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<SignAssembly>true</SignAssembly>
1616
<AssemblyOriginatorKeyFile>..\DeploymentFrameworkForBizTalkAddin.snk</AssemblyOriginatorKeyFile>
-8.82 KB
Binary file not shown.

src/AddIn.VS2010/DeploymentFrameworkForBizTalkAddin.VS2010.csproj

Lines changed: 0 additions & 96 deletions
This file was deleted.

0 commit comments

Comments
 (0)