page 6
Step 6. Change the contents of AssemblyInfo.cs
In Solution Explorer, open Properties (click on + to the left of Properties)
Double-click AssemblyInfo.cs
In AssemblyInfo.cs text editor window:
Delete following lines:

Change the parameter to AssemblyVersion attribute from "1.0.0.0" to "1.0.*", which will fill in the date and time of the last build into assembly version. Date and type format: number of days since Jan 1, 2000 and number of seconds since midnight divided by 2.
Change AssemblyDescription attribute to a more generic value "A project for LANDIS-II"
Change the argument of AssemblyConfiguration attribute to "Debug"
Add #if DEBUG directive before AssemblyConfiguration attribute
Add following directives after AssemblyConfiguration attribute
#else
[assembly: AssemblyConfiguration("Release")]
#endif

Save changes
< Page 5 | Page 6 | Page 7 >
In Solution Explorer, open Properties (click on + to the left of Properties)
Double-click AssemblyInfo.cs
In AssemblyInfo.cs text editor window:
Delete following lines:

Change the parameter to AssemblyVersion attribute from "1.0.0.0" to "1.0.*", which will fill in the date and time of the last build into assembly version. Date and type format: number of days since Jan 1, 2000 and number of seconds since midnight divided by 2.
Change AssemblyDescription attribute to a more generic value "A project for LANDIS-II"
Change the argument of AssemblyConfiguration attribute to "Debug"
Add #if DEBUG directive before AssemblyConfiguration attribute
Add following directives after AssemblyConfiguration attribute
#else
[assembly: AssemblyConfiguration("Release")]
#endif

Save changes
< Page 5 | Page 6 | Page 7 >

