0
votes
0answers
6 views
Setting tail of AssemblyVersion to be TeamCity $(build_number)
I want to set the Assembly number to the following
AssemblyMajorVersion.AssemblyMinorVersion.AssemblyBuildNumber.AssemblyRevision
YYYY-MM-DD-XXX
Where XXX is my TEamCity $(BUILD_NUMBER)
I can …
2
votes
6answers
139 views
AssemblyInfo.cs subversion and TortoiseSVN
I'm using TortoiseSVN and Visual Studio 2008.
Is there any way to update my project's subversion with svn's version in every build?
For example, 1.0.0.[svn's version] -> 1.0.0.12
1
vote
4answers
94 views
Where to specify version number in ASP.NET Web Site
So I have an ASP.NET 'Web Site' (as opposed to a Web Application) which has no AssemblyInfo.cs file or Bin folder or anything like that.
I want to have a way to specify an Assembly version number …
0
votes
2answers
100 views
Access solutioninfo.cs and assemblyinfo.cs from within .csproj
I need to access some information from my solutioninfo.cs and assemblyinfo.cs within my .csproj file and use it as a property.
use the value of
// my solutioninfo.cs
[assembly: …
1
vote
1answer
51 views
VS.net set version for multiple projects in one solution
I am trying to update a lot of different projects in a solution to have a new version number. Is there a simple way to synchronize the version number across all projects fileversion and clickonce …
0
votes
1answer
117 views
Now Log4Net.config isn’t being loaded as I moved my wrapper class to its own class project
Hi there,
Can anyone help, i have been using log4net with success i basically had a static class (wrapper) in my webproject and i load my config from external file called log4net.config by adding …
2
votes
5answers
174 views
Is it possible to change the version format of a C# project?
Instead of the major.minor.build.revision format, I'd like to use date and time for version numbers. Something more like day.month.year.time. Is there a way to change the format of the …
0
votes
2answers
62 views
Is there an equivelant to ‘AssemblyInfo.cs’ in a Win32 DLL project?
I already looked at this topic, but I need the answer flipped around. How would I set the assembly information attributes* in a Win32 DLL?
1
vote
2answers
175 views
What is the ThemeInfo attribute for?
Whenever I create a new WPF application or WPF user control library, the AssemblyInfo.cs file includes the following attribute:
[assembly: ThemeInfo(
ResourceDictionaryLocation.None,
//where …
0
votes
1answer
82 views
How to update assmebly version info with new build and revision during build?
I have to update the build number in assembly version of assemblyinfo.cs file.
I have written a custom tasks which updates all the assmeblyinfo.cs under a solution before starting build. But when i …
5
votes
3answers
465 views
Should AssemblyInfo.cs be placed in version control?
I have an automated build system suing CruiseControl. I am using the SvnRevisionLabeller to to get the version string to use. With this string I can use nant to update AssemblyInfo.cs so when I build …
1
vote
3answers
410 views
“LNK2022: metadata operation failed” driving me insane
I have a big solution with lots of projects, using VS2008 SP1, and at least once a day I encounter the LNK2022 error. If I do a full rebuild of the solution it builds fine, but this is not fun.
It …
0
votes
1answer
213 views
Is AssemblyInfo.cpp necessary?
I want to remove AssemblyInfo.cpp, because of some metadata errors that sometimes come up.
Is AssemblyInfo.cpp useful for anything? Or can it be removed without any problem?
0
votes
1answer
86 views
Is there a way to display less than 4 numbers in the assembly version?
I need to display only 3 numbers for my assembly versions, to comply with our internal guidelines
I tried removing the last digit from the AssemblyInfo file to look like this
[assembly: …
0
votes
2answers
179 views
Log4NET setting overwritten by AssemblyInfo Task
I have a project that uses log4net and works fine on the developer machines. When we build, a step in our build scripts calls the AssemblyInfo task to set version numbers and dates, etc. But the …
