SVNリポジトリから値を取得するプログラムを作成しました。次に、AssemblyFileversionをその値で更新します。
Assemblyinfo.cs内にコードを記述できないため、AssemblyFileVersionの値を更新するにはどうすればよいですか。
こんなことを成し遂げたい
..........................
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
SvnInfoEventArgs info;
Uri repoURI = new Uri("ServerAddress");
svnClient.GetInfo(repoURI, out info);
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion(String.Format("{0}.{1}.{2}. {3}",
major,minor,build,info.Revision))]