Add new API namespace() to set the root namespace of a C# project, independent of the project name
This commit is contained in:
parent
1747035050
commit
bbc1ae59ad
@ -104,7 +104,7 @@
|
||||
_p(2,'<AppDesignerFolder>Properties</AppDesignerFolder>')
|
||||
|
||||
local target = cfg.buildtarget
|
||||
_p(2,'<RootNamespace>%s</RootNamespace>', target.basename)
|
||||
_p(2,'<RootNamespace>%s</RootNamespace>', prj.namespace or target.basename)
|
||||
_p(2,'<AssemblyName>%s</AssemblyName>', target.basename)
|
||||
|
||||
local framework = prj.framework or frameworks[_ACTION]
|
||||
|
@ -698,6 +698,14 @@
|
||||
tokens = true,
|
||||
}
|
||||
|
||||
|
||||
api.register {
|
||||
name = "namespace",
|
||||
scope = "project",
|
||||
kind = "string",
|
||||
tokens = true,
|
||||
}
|
||||
|
||||
api.register {
|
||||
name = "objdir",
|
||||
scope = "config",
|
||||
|
@ -16,12 +16,14 @@
|
||||
local sln, prj
|
||||
|
||||
function suite.setup()
|
||||
sln, prj = test.createsolution()
|
||||
_ACTION = "vs2005"
|
||||
sln = test.createsolution()
|
||||
language "C#"
|
||||
uuid "AE61726D-187C-E440-BD07-2556188A6565"
|
||||
end
|
||||
|
||||
local function prepare()
|
||||
prj = premake.solution.getproject_ng(sln, 1)
|
||||
cs2005.projectsettings(prj)
|
||||
end
|
||||
|
||||
@ -31,7 +33,6 @@
|
||||
--
|
||||
|
||||
function suite.OnVs2005()
|
||||
_ACTION = "vs2005"
|
||||
prepare()
|
||||
test.capture [[
|
||||
<PropertyGroup>
|
||||
@ -117,7 +118,6 @@
|
||||
--
|
||||
|
||||
function suite.OnFrameworkVersion()
|
||||
_ACTION = "vs2005"
|
||||
framework "3.0"
|
||||
prepare()
|
||||
test.capture [[
|
||||
@ -137,3 +137,25 @@
|
||||
end
|
||||
|
||||
|
||||
--
|
||||
-- Make sure the root namespace can be overridden.
|
||||
--
|
||||
|
||||
function suite.canOverrideRootNamespace()
|
||||
namespace "MyCompany.%{prj.name}"
|
||||
prepare()
|
||||
test.capture [[
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.50727</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{AE61726D-187C-E440-BD07-2556188A6565}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>MyCompany.MyProject</RootNamespace>
|
||||
<AssemblyName>MyProject</AssemblyName>
|
||||
</PropertyGroup>
|
||||
]]
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user