All notable changes to Buildvana SDK will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
1.0.154-preview (2024-04-20)
- Buildvana SDK now supports loading a machine- and/or user-scoped configuration file named
Buildvana.Sdk.props
. Please refer to the relevant documentation for details. - A
.pfx
file used to sign an assembly through theAssemblySigning
module can now have no password. Previous versions issued an error if thePfxPassword
property was empty or not defined.
(Please note that thePfxPassword
property has also been renamed toAssemblyOriginatorKeyPassword
, as noted below in the "Changes to existing features" section.) - Some support has been added for running Windows-only tools under Wine when building under Linux or macOS. Please refer to the relevant documentation for details.
- In Inno Setup support, when there is no
AssemblyTitle
property,AppFullName
now defaults toAssemblyName
. - Inno Setup's compiler can now run on macOS and Linux (through Wine):
- Wine support must be configured at machine / user level - please refer to the documentation for configuration files and the
Wine
module; InnoSetupConstant
items whoseValue
metadata is a filesystem path must have anIsPath="true"
metadata, so that paths are converted to Windows-style paths when using Wine.
- Wine support must be configured at machine / user level - please refer to the documentation for configuration files and the
- The minimum supported version of Roslyn is now 4.9
- The minimum supported version of Visual Studio is now VS2022 17.9
- The minimum supported version of the .NET SDK is now 8.0.200
- The
AssemblySigning
module now expects the password to use for the.pfx
file in theAssemblyOriginatorKeyPassword
(as opposed toPfxPassword
) property.
- The
AssemblySigning
module did not work any more, due to the removal ofBuildvana.Sdk.Tasks.dll
in version 1.0.0-alpha.21. The compiled tasks have been brought back and are now compiled for .NET Standard 2.0, so that the same DLL can be used for both Visual Studio and the .NET SDK. - Due to a typo in Inno Setup support code,
ReleaseAssetDescription
metadata forInnoSetup
items were not honored and the default asset description was always used. AppShortName
andAppFullName
properties were not honored by Inno Setup support code;AssemblyName
was used in their place.
1.0.131-preview (2024-01-21)
This release just updates some dependencies to their latest versions, the most notable of them being StyleCop.Analyzers
, brought up to 1.2.0-beta.556.
1.0.122-preview (2023-11-22)
- Although the minimum supported Roslyn version was 4.8, version 1.0.116-preview still depended on version 4.7 of
Microsoft.CodeAnalysis.CSharp
. The dependency version has now been properly updated.
1.0.116-preview (2023-11-17)
- The minimum supported version of Roslyn is now 4.8
- The minimum supported version of Visual Studio is now VS2022 17.8
- The minimum supported version of the .NET SDK is now 8.0.100
1.0.110-preview (2023-11-09)
- The change in version 1.0.106-preview, whereas the
Title
property was used as a default forAssemblyTitle
, has been reversed. It turns out that the order in which MSBuild loads Buildvana.Sdk in relation to Microsoft.NET.Sdk makes the change ineffective. - The default value for property
AppFullName
, used as a constant passed to InnoSetup, is now$(AssemblyTitle)
instead of$(Title)
. - BREAKING CHANGE: The property used as NuGet package title is now
PackageTitle
instead ofTitle
. If left unset, it defaults to$(AssemblyTitle)
.
1.0.106-preview (2023-11-09)
- When using either NuGet Pack support or alternate pack, the
Title
property is now used as a default forAssemblyTitle
.
1.0.102-preview (2023-11-09)
- When using NerdBack.GitVersioning, the value of
AssemblyInformationalVersion
is now changed to not include metadata (Git commit SHA) when building a public version (i.e. frommain
or other branches identified inversion.json
).
This change also affects the default names of zipped publish folders and InnoSetup-generated setup programs, as they useAssemblyInformationalVersion
as a suffix.
1.0.99-preview (2023-11-08)
- The separator character used in default InnoSetup output names before the program version was a minus sign
-
instead of its intended value of underscore_
.
1.0.94-preview (2023-11-04)
- InnoSetup would fail if the script specified in the
Script
metadata of anInnoSetup
item was not in the same folder as the project.
1.0.88-preview (2023-10-26)
- NuGet-related features provided by the
NuGetPack
module can now be disabled altogether by setting theIncludeNuGetPackSupport
property tofalse
. The default value istrue
, which behaves like previous versions.
- BREAKING CHANGE: Alternate pack methods can now be used independently of one another. Therefore the
AlternatePackMethod
property has been discontinued; to enable alternate pack, just setUseAlternatePack
totrue
, as in versions prior to 1.0.41-preview whereAlternatePackMethod
was introduced. - BREAKING CHANGE: InnoSetup support has been completely rewritten. Main features include the following:
- Creation of an InnoSetup installations is no longer bound to a
PublishFolder
. - An
InnoSetup
item must be created for every installation program to create. - Source files for an installation can come from a publish folders, or from a custom location.
- Installation programs can be automatically added to the release asset list.
- Creation of an InnoSetup installations is no longer bound to a
- The default name for a zipped publish folder is now suffixed with the complete informational version (the
AssemblyInformationalVersion
property) when available, including semantic versioning metadata. This allows for clearer distinction between, for example, zip files created locally and on a continuous integration server.
- It was not possible to run InnoSetup scripts for more than one runtime identifier with the same target framework. For example, given two
PublishFolder
s, both withTargetFramework
set tonet7.0
, whoseRuntimeIdentifier
s werewin10-x86
andwin10-x64
respectively, a setup was generated only for the first of the two. This has been fixed.
1.0.75-preview (2023-10-03)
- If the
CreateZipFile
metadata of aPublishFolder
item istrue
and itsZipFileName
metadata is not set, the latter defaults to:$(MSBuildProjectName)-%(PublishFolder.Identity)_$(PackageVersion).zip
if thePackageVersion
property is set
(note that theBuildVersion
andAssemblyInformationalVersion
properties were previously used instead ofPackageVersion
);$(MSBuildProjectName)-%(PublishFolder.Identity).zip
otherwise
(this has not changed).
1.0.72-preview (2023-10-02)
- If the
CreateZipFile
metadata of aPublishFolder
item istrue
and itsZipFileName
metadata is not set, the latter defaults to:$(MSBuildProjectName)-%(PublishFolder.Identity)_$(AssemblyInformationalVersion).zip
if theAssemblyInformationalVersion
property is set
(note that theBuildVersion
property was previously used instead ofAssemblyInformationalVersion
);$(MSBuildProjectName)-%(PublishFolder.Identity).zip
otherwise
(this has not changed).
1.0.69-preview (2023-10-02)
ReleaseAsset
items can now have their MIME type specified via theMimeType
metadata. When not specified, the MIME type of an asset defaults toapplication/octet-stream
.- Zipped publish folders may now have a
ReleaseAssetMimeType
metadata specifying their MIME type when uploaded as a release asset. The default value isapplication/zip
.
- BREAKING CHANGE: The format of release asset lists has changed: each line now contains the full path of an asset, its MIME type, and its description, separated (like before) by tab characters (Unicode U+0009).
1.0.66-preview (2023-10-01)
- A new property
CompletePublishFolderMetadataDependsOn
has been added. TheCompletePublishFolderMetadata
target will depend on targets listed in this property. This is useful to separate concerns among alternate pack methods. - The new
ReleaseAssetList
module allows for creation of lists of assets to associate with a release, useful when releases are created externally (GitHub, etc.) and associated assets are the only way to retrieve published artifacts.- release asset list generation is enabled by the
GenerateReleaseAssetList
boolean property, defaulting totrue
except in libraries and test projects; - to include a file in the release asset list for a project, just add one or more
ReleaseAsset
items; - the
Description
metadata ofReleaseAsset
items can be used to add a textual description of each asset, for CI systems that can use it; - release assets without a
Description
metadata are given a default description according to theDefaultReleaseAssetDescription
property, whose default value is "(no description given)"; - release asset lists are UTF-8 text files;
- each row of a release asset list contains the full path of an asset, a tab character (Unicode U+0009), and the asset's description;
- rows are separated by the build system's line separator (CR+LF on Windows, LF otherwise);
- each project in a solution generates its own release asset list, whose name can be set via the
ReleaseAssetListFileName
property, defaulting to$(MSBuildProjectName).assets.txt
; - all release asset lists for a solution are placed in the artifacts directory,
$(ArtifactsDirectory)$(Configuration)
.
- release asset list generation is enabled by the
- New metadata in
PublishFolder
items allow for zipping a published folder:CreateZipFile
(boolean) enables the creation of a ZIP file with the contents of the published folder;ZipFileName
(string) is the name (complete with extension) of the created ZIP file;- ZIP files are created in the artifacts directory
$(ArtifactsDirectory)$(Configuration)
; - the same publish folder can be zipped and used by InnoSetup, if needed;
- if
Temporary
is set totrue
on a publish folder, it will be deleted after zipping (and after running InnoSetup if required); - zipped publish folders are added to the release asset list for the project by default, unless their
IsReleaseAsset
metadata is set tofalse
; ReleaseAssetDescription
metadata can be set to the textual description for the zipped folder in the release asset list;CreateZipFile
defaults totrue
ifZipFileName
is set,false
otherwise;- if
CreateZipFile
istrue
andZipFileName
is not set, the latter defaults to:$(MSBuildProjectName)-%(PublishFolder.Identity)_$(BuildVersion).zip
if theBuildVersion
property is set (such as when using Nerdbank.GitVersioning);$(MSBuildProjectName)-%(PublishFolder.Identity).zip
otherwise.
- The minimum supported version of Roslyn is now 4.7
- The minimum supported version of Visual Studio is now VS2022 17.7
- The minimum supported version of the .NET SDK is now 7.0.401
- When not using
Nerdbank.GitVersioning
, a stubGetBuildVersion
target is added to the project. This allows other targets to depend onGetBuildVersion
. Care should be exercised, however, to check that version-related properties have actually being set. - The
GetBuildVersion
target is always invoked before packing when using any alternate pack method. This ensures that properties such asBuildVersion
,InformationalVersion
, etc. are available to packing sub-modules, at least when using Nerdbank.GitVersioning.
- An item group called
InnoSetupIncludeLine
, used internally by theAlternatePack
module when theAlternatePackMethod
property is set toInnoSetup
, was meant to be cleared after use to free up some memory, but wasn't actually cleared. This has been fixed.
1.0.51-preview (2023-08-02)
- The minimum supported version of Roslyn is now 4.6
- The minimum supported version of Visual Studio is now VS2022 17.6
- The minimum supported version of the .NET SDK is now 7.0.306
- The following automatically added dependencies have been updated:
Jetbrains.Annotations
to version 2023.2.0Nerdbank.GitVersioning
to version 3.6.133StyleCop.Analyzers
to version 1.2.0-beta.507
1.0.41-preview (2023-07-18)
- BREAKING CHANGE: The
UseAlternatePack
property is no longer recognized. Projects must instead setAlternatePackMethod
to one of the following values:None
: does nothing (useful to silence warnings in library projects usingMicrosoft.Net.Sdk.Web
)PublishToFolders
: publish to folders, no InnoSetup involvedInnoSetup
: publish to folders and generate setup (this is the value to use in projects that previously setUseAlternatePack
totrue
)
1.0.26-preview (2023-05-02)
This version just updates all dependencies, as well as build scripts.
1.0.13-preview (2022-11-25)
- Version 1.0.7-preview contained a syntax error in a
.targets
file. - When using version 1.0.7-preview, Restore failed because of a missing Buildvana.Sdk v1.0.0 package.
1.0.7-preview (2022-11-25) RETIRED
- The
Nerdbank.GitVersioning
package is now automatically referenced if either aversion.json
or a.version.json
file is found looking from the project directory up untilHomeDirectory
. To disable this behavior, setUseNerdbankGitVersioning
tofalse
either in your project file or in aCommon.props
file. To issue an errorBVSDK2000
if a version JSON file is not found, setUseNerdbankGitVersioning
totrue
either in your project file or in aCommon.props
file.
- Errors and warnings issued by Buildvana SDK are no longer prefixed differently:
BVSDK
is the new prefix for all diagnostics.
- This version contains a syntax error in a
.targets
file that somehow slipped through to distribution. - Because of a weird interaction between the
Microsoft.Build.NoTargets
SDK andNerdbank.GitVersioning
when packing without building (which our CI workflows, as luck would have it, do) this version will try to reference version 1.0.0 of itself - which still doesn't exist - and restore will fail every time.
1.0.0-alpha.23 (2022-11-13)
- TFM-specific public API files (
PublicAPI\$(TargetFramework)\PublicAPI.{Shipped|Unshipped}.txt
) can now be disabled for multi-target projects by setting theUseTfmSpecificPublicApiFiles
property tofalse
. They can also be enabled for non-multi-target files by setting the same property totrue
.
1.0.0-alpha.22 (2022-09-22)
- Quite a few more properties are exported to the external
NuSpecFile
. The complete list can be seen in the source code. A notable addition isconfiguration
, the only default "nuspec property" missing in Buildvana SDK so far. - Files used for the generation of a NuGet package are now shown in Visual Studio's Solution Explorer tree view, under a "virtual" folder named "- Package". This includes: the license file, the third-party notice file, the Readme file, the package icon, and the
NuspecFile
if specified either explicitly or implicitly (i.e. by having a{ProjectName}.nuspec
file in the project folder). - When using public API analyzers, TFM-specific public API files are added to the project automatically.
- When generating a NuGet package, previous versions of Buildvana SDK wrote messages to the build log specifying the full paths of license, third-party notice, readme, and icon files. These messages have been removed in favor of showing the files in Visual Studio's Solution Explorer.
- When using an external
.nuspec
file, the$configuration$
tag did not work in previous versions of Buildvana SDK. This has been fixed. - When using an external
.nuspec
file, the$repositoryType$
tag did not work in previous versions of Buildvana SDK. This has been fixed.
1.0.0-alpha.21 (2022-09-20)
- #158 - BREAKING CHANGE: The LiteralAssemblyAttributes module has been removed. The
CLSCompliant
andComVisible
properties, however, are still supported: the corresponding assembly attributes are generated by a source generator. - #158 - BREAKING CHANGE: The ThisAssemblyClass module has been removed. The recommended workaround is to use the
ThisAssembly
package. - #163 - BREAKING CHANGE: Buildvana SDK does not use or recognize a version file, or otherwise determine a project's version, any longer. The suggested workaround is to use NerdBank.GitVersioning, GitVersion, or any other similar tool.
1.0.0-alpha.20 (2022-05-12)
- #142 - For packable projects, Buildvana SDK will automatically find a README.md file and include it in the NuGet package. To disable this feature, set the
ReadmeFileInPackage
property tofalse
. Recognized names for the README file, in order of lookup, are:Package-README.md
;package-readme.md
;NuGet-README.md
;nuget-readme.md
;NuGet.md
;nuget.md
;README.md
;readme.md
.
- #146 - BREAKING CHANGE: The Polyfills module, introduced in v1.0.0-alpha.18, has been removed.
Polyfills are a complicated topic, with lots of edge cases. They are best dealt with at a project level. The experience acquired with the Polyfills module has helped shape a polyfill library that will be open-sourced shortly (and is, needless to say, built with Buildvana SDK).
EDIT: PolyKit has born and is even better than anticipated!
1.0.0-alpha.19 (2022-04-29)
- #138 - The
UsePolyfills
property was forced totrue
in all projects in version 1.0.0-aplha.18.
1.0.0-alpha.18 (2022-04-26)
- #135 - Buildvana SDK will, by default, include in every C# project some polyfills that let developers use latest C# features on older platforms. To disable this feature set the
UsePolyfills
property tofalse
.- Polyfills are provided by adding a reference to the following NuGet Packages:
- In addition, the following classes are added to the project on platforms where they are not part of the BCL:
- System.Runtime.CompilerServices.CallerArgumentExpressionAttribute
- System.Runtime.CompilerServices.IsExternalInitAttribute
- System.Runtime.CompilerServices.SkipLocalsInitAttribute
- System.Diagnostics.StackTraceHiddenAttribute - This one is excluded from release builds, as it would have no effect anyway; it is here just to avoid preprocessor conditionals in multi-targeted projects.
- ValidatedNotNullAttribute - This attribute, as included by Buildvana SDK, does not have a namespace and thus does not require any
using
directive. Since a lot of projects already define this attribute, and to prevent conflicts with the Visual Studio SDK, you can disable the inclusion of this attribute buy setting theUseValidatedNotNullAttribute
property tofalse
.
1.0.0-alpha.17 (2022-04-24)
- #132 - InnoSetup integration now automatically includes Inno Download Plugin.
- #132 - Buildvana SDK can now be used outside of a Git repository: just put a file named ".buildvana-home" in the home directory (usually the same directory as your solution file). The ".buildvana-home" file is searched for before looking for a Git submodule or repository.
- #130 - InnoSetup integration has been fixed.
1.0.0-alpha.16 (2022-04-01)
- When using Buildvana SDK v1.0.0-alpha.14 with .NET SDK 6.0 and using ReSharper annotations, .NET SDK 5.0 was required too, because it was needed by the
Resharper.ExportAnnotations
dependency. This version updatesResharper.ExportAnnotations
to a version that works with .NET SDK 6, thus removing the aforementioned requirement.
1.0.0-alpha.15 (2022-04-01)
- #124 - Alternate Pack target: use the Pack target to publish to one or more folders and/or create setup executables with InnoSetup. See the PR for more information.
- #123 - POTENTIALLY BREAKING CHANGE: The minimum supported MSBuild version is now 17.0 (.NET SDK 6.0, Visual Studio 2022 v17.0).
- #123 - POTENTIALLY BREAKING CHANGE: The only supported .NET environments are now .NET 6.0 or newer and .NET Framework 4.7.2 or newer. This of course refers to the build phase; you can use Buildvana SDK to target older versions of .NET, .NET Core, or .NET Framework.
- #123 - POTENTIALLY BREAKING CHANGE: The
AllowUnderscoresInMemberNames
property is no longer supported. Just append;CA1707
to theNoWarn
property instead.
1.0.0-alpha.14 (2021-09-13)
- Warning NU1604 is no longer suppressed on dependencies automatically introduced in projects by Buildvana SDK. Suppressing the warning prevented a yellow triangle from appearing near the affected packages in Visual Studio 2019 until version 16.7; in version 16.11, on the contrary, the yellow triangle appears if the warning is suppressed.
1.0.0-alpha.13 (2021-09-12)
- POTENTIALLY BREAKING CHANGE: The minimum supported MSBuild version is now 16.8 (.NET SDK 5.0, Visual Studio 2019 v16.8).
- POTENTIALLY BREAKING CHANGE: Building with .NET Core 3.1 SDK is not supported any longer.
- #98 - XML documentation files are now correctly created (regression in versions 1.0.0-alpha.10 through 12).
1.0.0-alpha.12 (2021-01-19)
- #74 - Projects using Buildvana SDK now work with Omnisharp in VS Code.
1.0.0-alpha.11 (2021-01-19)
- #72 - False-positive BVW1400 and/or BVW1900 warnings are not raised any more.
- #72 - Properties
GenerateAssemblyCLSCompliantAttribute
andGenerateAssemblyComVisibleAttribute
are not set any more ifGenerateLiteralAssemblyInfo
is set tofalse
. - #72 -
LiteralAssemblyAttribute
items are not generated any more ifGenerateLiteralAssemblyInfo
is set tofalse
. - #72 - Warning CS3021 ("'type' does not need a CLSCompliant attribute because the assembly does not have a CLSCompliant attribute") is not suppressed any more if
GenerateLiteralAssemblyInfo
is set tofalse
. - #72 - Literal assembly attributes are now correctly regenerated if an attribute's named parameter changes.
- #72 -
WriteLiteralAssemblyAttributes
andWriteThisAssemblyClass
tasks are now correctly unloaded after execution.
1.0.0-alpha.10 (2021-01-03)
- POTENTIALLY BREAKING CHANGE: The minimum supported MSBuild version is 16.7 (.NET SDK 3.1, Visual Studio 2019 v16.7).
- BREAKING CHANGE: The syntax for parameters of literal assembly attributes, as well as constants in "ThisAssembly" classes, has changed. The new syntax is described in this document.
- BREAKING CHANGE: The
Microsoft.CodeAnalysis.FxCopAnalyzers
package is not imported any more, due to its deprecation in favor ofMicrosoft.CodeAnalysis.NetAnalyzers
(see the relevant documentation for more details). - BREAKING CHANGE: The
UseStandardAnalyzers
property is not used any more. The newUseStyleCopAnalyzers
property enables the use of theStyleCop.Analyzers
package. - #62 - Messages listing the icon, license file, and/or third-party copyright notice included in packages are now shown only when packing.
- #57 - Generated
ThisAssembly
classes now have CompilerGenerated and ExcludeFromCodeCoverage attributes. - BREAKING CHANGE: #57 - The default for the
UseJetBrainsAnnotations
property is nowfalse
. The reason is that it was counterintuitive to mention JetBrains annotations in projects not using them. - Compiled tasks used to generate ThisAssembly classes and literal assembly attributes have been completely rewritten using Roslyn code generators.
- The message for error
BVE1004
now reports the minimum required MSBuild version. - The message for warning
BVW1900
("ThisAssembly class generation is only supported in C# and Visual Basic projects") now reports theLanguage
MSBuild property value for the project. - POTENTIALLY BREAKING CHANGE: Errors
BVE1900
andBVE1901
did not make sense with the new constant syntax. They have been removed, and the old errorBVE1902
is nowBVE1900
.
- #65 - Warning BVW1900 issued on every project with a
<TargetFrameworks>
property and ThisAssembly class generation enabled.
1.0.0-alpha.9 (2020-10-10)
- #51 - The automatically-added package reference to
ReSharper.ExportAnnotations.Task
has been updated to version 1.3.1. - POTENTIALLY BREAKING CHANGE: #51 - The
EnableThisAssemblyClass
property has been renamed toGenerateThisAssemblyClass
and its default value is nowfalse
.
- Thanks to the
ReSharper.ExportAnnotations.Task
update, building a project on a non-Windows system will no longer fail. See Tenacom/ReSharper.ExportAnnotations#23 for details.
1.0.0-alpha.8 (2020-10-10)
- #47 - The automatically-added package reference to
ReSharper.ExportAnnotations.Task
has been updated to version 1.3.0. - #49 - Compiled tasks are built for more target frameworks, to cover a larger number of build environments and MSBuild / .NET (Core) / Visual Studio versions.
- Thanks to the
ReSharper.ExportAnnotations.Task
update, building a project withdotnet build
using .NET Core SDK v3.1 or .NET SDK 5-rc1 does not require.NET Core 2.1 to be installed any longer. See Tenacom/ReSharper.ExportAnnotations#20 for details.
1.0.0-alpha.7 (2020-09-28)
- #41 - Buildvana SDK now uses compiled tasks instead of inline tasks, thus improving build performance.
- #43 - Setting the
EnableDefaultThisAssemblyConstants
property tofalse
suppresses creation of default constants in theThisAssembly
class. - Warning [BVW1400] is now issued if literal assembly attribute generation is enabled for a project in a language that is neither C# nor Visual Basic. Previous versions silently skipped the code generation phase.
- Warning [BVW1900] is now issued if
ThisAssembly
class generation is enabled for a project in a language that is neither C# nor Visual Basic. Previous versions silently skipped the code generation phase.
- POTENTIALLY BREAKING CHANGE: #44 - The
AssemblyInfo
module has been removed. Assembly attribute generation-related properties like e.g.GenerateAssemblyInfo
,GenerateAssemblyVersionAttribute
, etc. are not set totrue
any more at project and common files evaluation time; instead, they are left unset and defaulted totrue
later. - POTENTIALLY BREAKING CHANGE: Errors and warnings have been renumbered.
- BREAKING CHANGE: #44 - The
CLSCompliant
property is no longer set totrue
by default; it must be set explicitly in order to generate the respective assembly attribute. Projects that containCLSCompliant
attributes on types and members and do not set theCLSCompliant
property will now issue warning CS3021: '<type_or_member>' does not need a CLSCompliant attribute because the assembly does not have a CLSCompliant attribute.. To avoid the warning, set theCLSCompliant
property totrue
(the previous default) in the project file or in a common file. - BREAKING CHANGE: #44 - The
ComVisible
property is no longer set tofalse
by default; it must be set explicitly in order to generate the respective assembly attribute. In projects that need to have all types and members of the compiled assembly hidden from COM, now you must set theComVisible
property tofalse
(the previous default) in the project file or in a common file.
- #42 - The
ThisAssembly
class was never generated by previous versions of Buildvana SDK.
1.0.0-alpha.6 (2020-09-19)
- #35 - A package reference to
Microsoft.NETFramework.ReferenceAssemblies
is automatically added to projects targeting .NET Framework so they can be built on non-Windows systems, or without a .NET Targeting Pack installed.
- #36 - Building projects with centrally-managed package versions now works.
1.0.0-alpha.5 (2020-09-17)
- Dependency
ReSharper.ExportAnnotations
has been updated to version 1.1.0. This release fixes two rather serious bugs that affected Buildvana SDK's functionality. See their changelog for more information.
1.0.0-alpha.4 (2020-09-14)
- #30 - The LiteralAssemblyAttributes module now works as expected.
1.0.0-alpha.3 (2020-09-14)
- POTENTIALLY BREAKING CHANGE: #26 - A unit test project is now recognized as such, by convention, if its name ends with
.Tests
. To opt out of this convention, explicitly setIsTestProject
totrue
orfalse
.
- Dependency
StyleCop.Analyzers
has been updated to version 1.2.0-beta.205
1.0.0-alpha.2 (2020-09-13)
- #22 - Warning CA1707 (Identifiers should not contain underscores) is now suppressed by default in test projects. You can control this feature via the
AllowUnderscoresInMemberNames
property.
1.0.0-alpha.1 (2020-09-12)
Initial release.