I have a role project (say, called MyRole
) in my cloud project (.ccproj
).
So adding this MyRole.csproj
project as a role will result an Azure role called MyRole
while running the deployment.
I was wondering, can I reuse this MyRole.csproj
to have another role with a different name (say, MyRole2
) in the same cloud project?
I only need two roles with different names (Role.Name
) with duplicating the codebase. Any ideas?