Skip to content

Releases: microsoft/MSBuildSdks

Microsoft.Build.Traversal.1.0.41

13 Aug 20:09
3624f29
Compare
Choose a tag to compare

What's New

  • Make IsTraversal property determination case-insensitive. (#47)

Microsoft.Build.NoTargets.1.0.40

31 Jul 20:39
6d7c59e
Compare
Choose a tag to compare

What's New

  • Only default LanguageTargets for projects that the SDK doesn't handle. (#45)
    This fixes CSharp or Visual Basic project loading in Visual Studio

Microsoft.Build.NoTargets.1.0.39

21 Jun 16:34
Compare
Choose a tag to compare

What's New

https://www.nuget.org/packages/Microsoft.Build.NoTargets/1.0.39

Microsoft.Build.CentralPackageVersions.2.0.1

31 May 15:32
321da5c
Compare
Choose a tag to compare

What's New

  • Version 2.0 of central package versions (#31)

Version 2.0 Breaking Changes

In version 2.0 of the package, we have deprecated the PackageVersion item and instead are using <PackageReference Update="Package" />. To migrate an existing code base to use the newer version, please do the following:

  1. Search and replace PackageVersion Include with PackageReference Update in your Packages.props

    v1.0:
    <ItemGroup>
      <PackageVersion Include="PackageA" Version="1.0.0" />
    </ItemGroup>
    v2.0:
    <ItemGroup>
      <PackageReference Update="PackageA" Version="1.0.0" />
    </ItemGroup>
  2. Remove all PackageVersion items in Packages.props for global package references and instead specify the version on the <GlobalPackageReference /> item

    v1.0:
    <ItemGroup>
      <PackageVersion Include="PackageA" Version="1.0.0" />
      <GlobalPackageReference Include="PackageA" />
    </ItemGroup>
    v2.0:
    <ItemGroup>
      <GlobalPackageReference Include="PackageA" Version="1.0.0" />
    </ItemGroup>
  3. Remove all PackageVersion items in individual projects, set VersionOverride to override a version, and move metadata to the corresponding <PackageReference/> item in the project file.

    v1.0:
    <ItemGroup>
      <PackageVersion Include="PackageA" Version="1.0.0" ExcludeAssets="Build" />
      <PackageReference Include="PackageA" />
    </ItemGroup>
    v2.0:
    <ItemGroup>
      <PackageReference Include="PackageA" VersionOverride="1.0.0" ExcludeAssets="Build" />
    </ItemGroup>

Microsoft.Build.Traversal.1.0.34

30 May 21:18
588830f
Compare
Choose a tag to compare

What's New

  • Fixes issues related to SDK-style projects and non-existent targets (#37)

https://www.nuget.org/packages/Microsoft.Build.Traversal/1.0.34

Microsoft.Build.NoTargets.1.0.26

06 Apr 15:39
5580d48
Compare
Choose a tag to compare

What's New

  • Fix NoTargets not loading properly in Visual Studio (#23)

Microsoft.Build.Traversal.1.0.22

13 Mar 21:03
ed2e2ac
Compare
Choose a tag to compare

What's New

  • Fix issue with Traversal failing because OutputPath is not set (#13)
  • Remove IncrementalClean from Traversal (#14)

Microsoft.Build.Traversal.1.0.12

06 Mar 21:41
813781b
Compare
Choose a tag to compare

What's New

  • Initial release

Microsoft.Build.NoTargets.1.0.12

06 Mar 22:22
813781b
Compare
Choose a tag to compare

What's New

  • Initial release

Microsoft.Build.CentralPackageVersions.1.0.12

06 Mar 22:28
813781b
Compare
Choose a tag to compare