jschementi / silverline

Plugin for running Ruby in the browser seamlessly from Rails, and display either HTML or vector graphics

This URL has Read+Write access

silverline / templates / AppManifest.xaml.erb
100755 12 lines (11 sloc) 0.431 kb
1
2
3
4
5
6
7
8
9
10
11
12
<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  RuntimeVersion="2.0.31005.00"
  EntryPointAssembly="<%= @assemblies.first %>"
  EntryPointType="<%= @entry_point_type %>">
  <Deployment.Parts>
  <% for assembly in @assemblies %>
    <AssemblyPart source="<%= @assembly_path %>/<%= assembly %>.dll" />
  <% end %>
  </Deployment.Parts>
</Deployment>