开发者

How do you put a version number into an rdlc file?

开发者 https://www.devze.com 2023-03-24 16:19 出处:网络
I\'ve a couple of rdlc files which I change everytime business has additional requirements. The problem is that we keep pdfs of the reports we create, and it\'s impossible right now to see what versio

I've a couple of rdlc files which I change everytime business has additional requirements. The problem is that we keep pdfs of the reports we create, and it's impossible right now to see what version of the rdlc file it was created with.

I've thought about putting a text field with "Version XX.Y" into the footer, b开发者_运维知识库ut then I have to remember to update this when I make changes. It's not the worst solution in the world, but I'd like to hear how others handle report versioning in reporting services.

Note that I am renedering reports using local reporting, i.e. no server, so I've thought about somehow trying to display the assembly version of the application running the report. This I can control more easily with .* notation in assemblies, but I'm not sure how to have a text field which would show this.


You could add a property containing the assembly version to the report's data source (or pass the value in some other way).

public string AssemblyVersion { 
    get {
        return Assembly.GetAssembly(typeof(WhateverTypeThisIs)).GetName().Version;
    } 
}

Another option might be to use an MSBuild task to replace the version number in the .rdlc for you. XMLPoke, for instance.

If you are using subversion, an option might be to use the SvnInfo task from MSBuild community tasks to get the last changed rev of the report and use that number to update the XML of the rdlc file.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号