In IronPythonStudio in the pyproj file for a winforms project, to include a form in the compilation they write <ItemGroup> <Compile Include="Form1.py"> <SubType>Form</SubType> </Compile> <Compile Include="Program.py" /> </ItemGroup> In VB/C#, for including a webform in the compilation in a webapplication, in the vbproj or csproj file they write <ItemGroup> <Content Include="Default.aspx" /> </ItemGroup> <ItemGroup> <Compile Include="Default.aspx.vb"> <SubType>ASPXCodeBehind</SubType> <DependentUpon>Default.aspx</DependentUpon> </Compile> <Compile Include="Default.aspx.designer.vb"> <DependentUpon>Default.aspx</DependentUpon> </Compile> What would I have to write in a pyproj file to include a webform in the compilation , for the aspx file and for the aspx.py file? How would it be the above tags? What would go for the aspx.py it in the "SubType" tag since asp.net IronPython doesnt use codebehind but codefile?
> Date: Sun, 28 Nov 2010 13:02:40 -0700> From: jdha...@gmail.com > To: users@lists.ironpython.com > Subject: Re: [IronPython] Web application template > > Also, VS 2010 project templates aren't terribly difficult to create, > so if you'd like to contribute some we'd be glad to include them. > > - Jeff > > On Sat, Nov 27, 2010 at 10:11 PM, Jimmy Schementi <ji...@schementi.com> wrote: > > There are no visual studio templates as of today, but there is a sample > > website template is this > > release > > http://blog.jimmy.schementi.com/2010/07/aspnet-dynamic-language-support-is-open.html. > > ~Jimmy > > > > > > On Sat, Nov 27, 2010 at 7:32 AM, Pablo Dalmazzo <pablodalm...@hotmail.com> > > wrote: > >> > >> is there a web application template for asp.net with IronPython? > >> > >> > >> _______________________________________________ > >> Users mailing list > >> Users@lists.ironpython.com > >> http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > >> > > > > > > _______________________________________________ > > Users mailing list > > Users@lists.ironpython.com > > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > > > > > _______________________________________________ > Users mailing list > Users@lists.ironpython.com > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
_______________________________________________ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com