c# - Visual Studio solution properties: Debug|Mixed Platforms.ActiveCfg = Debug|.NET -
i'm looking in .sln file of old code, , see various lines end debug|.net
. <- '.net' mean? (as opposed 'any cpu' or 'x86')?
full line:
{f9e9f25d-1008-4098-a4a7-179a0512f745}.debug|mixed platforms.activecfg = debug|.net
examples can seen here (line 56):
https://github.com/apereo/dotnet-cas-client/blob/master/dotnetcasclient.sln
these settings can found in gui (solution explorer -> right click on solution -> properties -> configuration properties) - , if change them ".net" "any cpu" stuck there , .net no longer option. (visual studio 2008, targeting .net 3.5)
thanks.
the part right can named person writing project wants. "platform configuration name" , customize-able in gui. need choose <new>
"active solution platform" drop-down (this how in visual studio 2013, earliest version have installed).
as why can't change , disappearing, because place used project id {f9e9f25d-1008-4098-a4a7-179a0512f745}
. if higher in file id examplewebsite
, site not have project file , instead defined inside of .sln
. in section site no build config named .net
defined, once change off can't changed because there nothing change because invalid build configuration.
my recommendation, use dotnetcasclient.vs2010.sln
instead, more checked in , not have invalid build configurations.
Comments
Post a Comment