Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Windows Azure CloudServicePlugin to extend the capabilities to the SDK (again) #55

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?xml version="1.0" ?>
<!--

Copy the plugin files to this folder for the Azure SDK to discover it:

%PROGRAMFILES%\Microsoft SDKs\Windows Azure\.NET SDK\vX.X\bin\plugins\$safeitemname$\

Add this plugin to your cloud project by adding this import tag to your ServiceDefinition.csdef

<ServiceDefinition>
<WorkerRole>
<Imports>
<Import moduleName="$safeitemname$" />
</Imports>
</WorkerRole>
</ServiceDefinition>

-->
<RoleModule xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" namespace="$safeitemname$">
<Startup>
<!-- add startup tasks here

<Task commandLine="install.cmd" executionContext="elevated" taskType="simple" />

-->
</Startup>
<ConfigurationSettings>
<!-- add settings here

<Setting name="SettingName"/>

-->
</ConfigurationSettings>
<Endpoints>
<!-- add endpoints here

<InputEndpoint localPort="8080" name="InputEndpointName" port="80" protocol="tcp"/>

<InternalEndpoint name="InternalEndpointName" protocol="http">
<FixedPort port="8000"/>
</InternalEndpoint>

-->
</Endpoints>
<Certificates>
<!-- add certificates here

<Certificate name="CertificateName" storeLocation="LocalMachine" storeName="My" permissionLevel="elevated" />

-->
</Certificates>
</RoleModule>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Item">
<TemplateData>
<DefaultName>CloudServicePlugin</DefaultName>
<Name>Windows Azure Cloud Service Plugin</Name>
<Description>A template to create a plugin which extends the Virtual Studio SDK for Cloud Services.</Description>
<ProjectType>CSharp</ProjectType>
<Icon>azure-icon.png</Icon>
<NumberOfParentCategoriesToRollUp>1</NumberOfParentCategoriesToRollUp>
</TemplateData>
<TemplateContent>
<ProjectItem ReplaceParameters="true" TargetFileName="$safeitemname$.csplugin">CloudServicePlugin.csplugin</ProjectItem>
</TemplateContent>
</VSTemplate>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading