Ask a Question related to ASP.NET General, Design and Development.
-
S. Justin Gengo #1
Re: Versioning Best Practices?
Emad,
Now that web applications are classes themselves the same versioning best
practices apply!
Go ahead and follow the versioning components guidelines.
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Emad" <iemad@hotmail.com> wrote in message
news:ui34m%23AYDHA.2648@TK2MSFTNGP09.phx.gbl...problem> We are developing a website and there are several developers working on
> it... We try to report bugs as fixed on version x.x.x.x... We have been
> hard coding the assembly version in the assembly.vb class. The onlyfound> is that sometimes we forget to change the version before deployment.
>
> So I changed it to look like this:
>
> <Assembly: AssemblyVersion("2.0.*.*")>
>
> Will that cause any problem??? Is this good practice?
>
>
> What is the best practice for versioning web applications any way? I> stuff online on versioning components but not web applications.
>
> Thanks.
>
>
S. Justin Gengo Guest
-
Web Service Versioning
I have a .NET web service and I want to be able to version it, and continue developing on a separate version altogether. The client that accesses... -
Web Service Versioning in GAC
I have deployed version 1.0 and 2.0 of a web service in GAC. When I call the web service from the client application on the Internet, the version... -
[PHP-DEV] --enable-versioning does not work (was: [PHP-DEV] [PATCH] disallow --enable-versioning with shared modules)
Hello Jani, Friday, November 14, 2003, 5:15:39 PM, you wrote: -
Versioning ASP text files
Hi, I have an ASP (not ASP .NET) application that I have to modify. I am using Visual studio .net as the editor. I would like to be able to work... -
versioning of assemblies
Hi, I was reading a doc on versioning, and came to know that versioning of assemblies are easier than ever. Can sb pl mention me, how this can be... -
MS News \(MS ILM\) #2
Re: Versioning Best Practices?
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvb600/html/msdn_bldvbcom.asp[/url]
"S. Justin Gengo" <sjgengo@aboutfortunate.com> wrote in message
news:O7ESQuBYDHA.2308@TK2MSFTNGP12.phx.gbl...> Emad,
>
> Now that web applications are classes themselves the same versioning best
> practices apply!
>
> Go ahead and follow the versioning components guidelines.
>
> Sincerely,
>
> --
> S. Justin Gengo, MCP
> Web Developer
>
> Free code library at:
> [url]www.aboutfortunate.com[/url]
>
> "Out of chaos comes order."
> Nietzche
>
>
> "Emad" <iemad@hotmail.com> wrote in message
> news:ui34m%23AYDHA.2648@TK2MSFTNGP09.phx.gbl...> problem> > We are developing a website and there are several developers working on
> > it... We try to report bugs as fixed on version x.x.x.x... We have been
> > hard coding the assembly version in the assembly.vb class. The only> found> > is that sometimes we forget to change the version before deployment.
> >
> > So I changed it to look like this:
> >
> > <Assembly: AssemblyVersion("2.0.*.*")>
> >
> > Will that cause any problem??? Is this good practice?
> >
> >
> > What is the best practice for versioning web applications any way? I>> > stuff online on versioning components but not web applications.
> >
> > Thanks.
> >
> >
>
MS News \(MS ILM\) Guest
-
MS News \(MS ILM\) #3
Re: Versioning Best Practices?
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconassemblyversioning.asp[/url]
"Emad" <iemad@hotmail.com> wrote in message
news:ui34m%23AYDHA.2648@TK2MSFTNGP09.phx.gbl...problem> We are developing a website and there are several developers working on
> it... We try to report bugs as fixed on version x.x.x.x... We have been
> hard coding the assembly version in the assembly.vb class. The onlyfound> is that sometimes we forget to change the version before deployment.
>
> So I changed it to look like this:
>
> <Assembly: AssemblyVersion("2.0.*.*")>
>
> Will that cause any problem??? Is this good practice?
>
>
> What is the best practice for versioning web applications any way? I> stuff online on versioning components but not web applications.
>
> Thanks.
>
>
MS News \(MS ILM\) Guest
-
MS News \(MS ILM\) #4
Re: Versioning Best Practices?
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cptutorials/html/versioning_components.asp[/url]
Packaging and Deployment (.NET Framework Tutorials)
"Emad" <iemad@hotmail.com> wrote in message
news:ui34m%23AYDHA.2648@TK2MSFTNGP09.phx.gbl...problem> We are developing a website and there are several developers working on
> it... We try to report bugs as fixed on version x.x.x.x... We have been
> hard coding the assembly version in the assembly.vb class. The onlyfound> is that sometimes we forget to change the version before deployment.
>
> So I changed it to look like this:
>
> <Assembly: AssemblyVersion("2.0.*.*")>
>
> Will that cause any problem??? Is this good practice?
>
>
> What is the best practice for versioning web applications any way? I> stuff online on versioning components but not web applications.
>
> Thanks.
>
>
MS News \(MS ILM\) Guest
-
MS News \(MS ILM\) #5
Re: Versioning Best Practices?
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cptutorials/html/versioning_components.asp[/url]
"Emad" <iemad@hotmail.com> wrote in message
news:ui34m%23AYDHA.2648@TK2MSFTNGP09.phx.gbl...problem> We are developing a website and there are several developers working on
> it... We try to report bugs as fixed on version x.x.x.x... We have been
> hard coding the assembly version in the assembly.vb class. The onlyfound> is that sometimes we forget to change the version before deployment.
>
> So I changed it to look like this:
>
> <Assembly: AssemblyVersion("2.0.*.*")>
>
> Will that cause any problem??? Is this good practice?
>
>
> What is the best practice for versioning web applications any way? I> stuff online on versioning components but not web applications.
>
> Thanks.
>
>
MS News \(MS ILM\) Guest
-
Emad #6
Re: Versioning Best Practices?
Is there a reason I should not use this verioning scheme:
<Assembly: AssemblyVersion("2.0.*.*")>
Thanks.
"S. Justin Gengo" <sjgengo@aboutfortunate.com> wrote in message
news:O7ESQuBYDHA.2308@TK2MSFTNGP12.phx.gbl...> Emad,
>
> Now that web applications are classes themselves the same versioning best
> practices apply!
>
> Go ahead and follow the versioning components guidelines.
>
> Sincerely,
>
> --
> S. Justin Gengo, MCP
> Web Developer
>
> Free code library at:
> [url]www.aboutfortunate.com[/url]
>
> "Out of chaos comes order."
> Nietzche
>
>
> "Emad" <iemad@hotmail.com> wrote in message
> news:ui34m%23AYDHA.2648@TK2MSFTNGP09.phx.gbl...> problem> > We are developing a website and there are several developers working on
> > it... We try to report bugs as fixed on version x.x.x.x... We have been
> > hard coding the assembly version in the assembly.vb class. The only> found> > is that sometimes we forget to change the version before deployment.
> >
> > So I changed it to look like this:
> >
> > <Assembly: AssemblyVersion("2.0.*.*")>
> >
> > Will that cause any problem??? Is this good practice?
> >
> >
> > What is the best practice for versioning web applications any way? I>> > stuff online on versioning components but not web applications.
> >
> > Thanks.
> >
> >
>
Emad Guest
-
Chris Dunaway #7
Re: Versioning Best Practices?
"Emad" <iemad@hotmail.com> wrote in
news:eCdhI5CYDHA.1620@TK2MSFTNGP12.phx.gbl:
Jeffrey Richter, in his book "Applied Microsoft .Net Framework> Is there a reason I should not use this verioning scheme:
>
> <Assembly: AssemblyVersion("2.0.*.*")>
>
Programming", says NOT to use the auto increment feature. He states:
"This feature is a bug and shouldn't be used because changing the assembly
version number will break any assemblies that reference this assembly. The
AssemblyInfo.cs file that Visual Studio.Net automatically creates for you
when you create a new project is in error: it sets the AssemblyVersion
attribute so that is major and minor parts are 1.0 and that the build and
revision parts are automatically updated by the compiler. You should
definitely modify this file and hard-code all four parts of the assembly
version number"
His book goes on to explain the different version numbers that are assigned
to an assembly (there are three!).
I don't fully understand it yet, but the book is highly recommended.
Chris
--
If you don't like lunchmeat, please remove it from my e-mail address to
send me an e-mail
Chris Dunaway Guest



Reply With Quote

