Found 25 packages
MSBuild targets for updating Assembly version during build process. AssemblyInfo can be set by initializing MSBuild property $(AssemblyVersionNumber) before MSBuild target AssemblyVersionUpdate is called.
AssemblyInfo file versioning utilities
Allows semantic versioning style fields to be injected into your assemblies via a $SemanticVersion property (MSBuild command line parameter or added to your csproj).
An assembly versioning task for MSBuild.
Package Description
==CSharpTest.Net.Tools== CmdTool.exe - provides a Visual Studio code generation integration to any command-line application. see also http://help.csharptest.net/?CmdToolOverview.html CSharpTest.Net.Generators.exe - provides a command-line replacement for ResX code generation with support for message files (.mc) and rich exception classes. see also http://help.csharptest.net/?CSharpTest.Net.GeneratorsOverview.html StampCopyright.exe - provides a means to ensure all source code is automagically stamped with a copyright message header. see also http://help.csharptest.net/?StampCopyrightOverview.html StampVersion.exe - provides the ability to scan for and replace versions in AssemblyInfo.cs files. see also http://help.csharptest.net/?StampVersionOverview.html AssemblyFileProcessor.exe - provides the ability to replace assembly attribute values in AssemblyInfo.cs files.
A simple CLI app for updating assembly versions.
We miss our * but we can now use $(BuildNum)
MSBuild task that implements 'Constrained Semantic Version' on Git and stamps produced assembly by automatically generating AssemblyVersion, FileVersion and InformationalVersion attributes. Please see https://github.com/SimpleGitVersion/SGV-Net/wiki.
Automatically update .NET assembly version numbers.
CaveSystems AssemblyVersionInfo Bibliothek. This packages contains tools for appdom and assembly specific functions and versioning.
This allow DNX project to use 'Constrained Semantic Version' on Git. Stamps produced assembly by automatically generating AssemblyVersion, FileVersion and InformationalVersion attributes. Please see https://github.com/SimpleGitVersion/SGV-Net/wiki.
This package allows you to log couple of assembly versions such as AssemblyVersion, FileVersion and InformationalVersion
Sets up a c# project to automatically generate extended version information attributes on each build using various predefined or customized patterns. Can automatically control content for FileVersionAttribute, InformationalVersionAttribute and ConfigurationAttribute to provide developers the tools to always know for sure where and how a binary was created by looking only at the assembly dll. Developers can easily configure which algorithms to use and extend existing logic using standard MsBuild functionality. Supports both legacy .Net FW projects inclusing PackageReference projects, and .Net Core SDK-style projects.
MSBuild targets for updating Assembly version during build process. AssemblyInfo can be set by initializing MSBuild property $(AssemblyVersionNumber) before MSBuild target AssemblyVersionUpdate is called.
This package allows you to log couple of assembly versions such as AssemblyVersion, FileVersion and InformationalVersion with Serilog.ILogger.
This package allows you to log couple of assembly versions such as AssemblyVersion, FileVersion and InformationalVersion with Microsoft.Extensions.Logging.ILogger.
This package allows you to log couple of assembly versions such as AssemblyVersion, FileVersion and InformationalVersion with NLog.ILogger.
Allows emitting arbitrary assembly attributes, compatible with SDK-style projects and classic ones. Usage: declare @(AssemblyAttribute) items to include, such as: <ItemGroup> <AssemblyAttribute Include="[ATTRIBUTE_FULL_TYPENAME]" _Parameter1="[CTOR_ARG]" _ParameterN="[CTOR_ARG_N]" /> </ItemGroup> The `_ParameterN` attributes must match the attribute constructor arguments. Use the following properties to customize what is generated: <PropertyGroup> <GenerateAssemblyCompanyAttribute>true|false</GenerateAssemblyCompanyAttribute> <GenerateAssemblyConfigurationAttribute>true|false</GenerateAssemblyConfigurationAttribute> <GenerateAssemblyCopyrightAttribute>true|false</GenerateAssemblyCopyrightAttribute> <GenerateAssemblyDescriptionAttribute>true|false</GenerateAssemblyDescriptionAttribute> <GenerateAssemblyFileVersionAttribute>true|false</GenerateAssemblyFileVersionAttribute> <GenerateAssemblyInformationalVersionAttribute>true|false</GenerateAssemblyInformationalVersionAttribute> <GenerateAssemblyProductAttribute>true|false</GenerateAssemblyProductAttribute> <GenerateAssemblyTitleAttribute>true|false</GenerateAssemblyTitleAttribute> <GenerateAssemblyVersionAttribute>true|false</GenerateAssemblyVersionAttribute> <GenerateNeutralResourcesLanguageAttribute>true|false</GenerateNeutralResourcesLanguageAttribute> </PropertyGroup> And their corresponding values * AssemblyCompanyAttribute: $(Company) * AssemblyConfigurationAttribute: $(Configuration) * AssemblyCopyrightAttribute: $(Copyright) * AssemblyDescriptionAttribute: $(Description) * AssemblyFileVersionAttribute: $(FileVersion) * AssemblyInformationalVersionAttribute: $(InformationalVersion) * AssemblyProductAttribute: $(Product) * AssemblyTitleAttribute: $(AssemblyTitle) * AssemblyVersionAttribute: $(AssemblyVersion) * NeutralResourcesLanguageAttribute: $(NeutralLanguage)
AssemblyVersionInfo is a very simple source generator that generates constant strings of your assembly name and version. The intended usage is for the System.CodeDom.Compiler.GeneratedCodeAttribute.