-- -- tests/actions/vstudio/cs2005/test_common_props.lua -- Check Visual Studio 2012 extensions to the project properties block. -- Copyright (c) 2013 Jason Perkins and the Premake project -- local p = premake local suite = test.declare("vs2012_csproj_common_props") local dn2005 = p.vstudio.dotnetbase -- -- Setup -- local wks, prj function suite.setup() p.action.set("vs2012") wks = test.createWorkspace() language "C#" end local function prepare() prj = test.getproject(wks, 1) dn2005.commonProperties(prj) end --- -- Visual Studio 2012 omits and . --- function suite.onDefaultCommonProps() prepare() test.capture [[ ]] end