Welcome to mirror list, hosted at ThFree Co, Russian Federation.

WebConfig-Application.xft.xml « Templates « AspNet « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 954d3d418cd8735230145a8368b6334bc614500a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0"?>
<Template
	Originator="Michael Hutchinson"
	Created="2007/09/10"
	LastModified="2007/09/10">

	<!-- Template Header -->
	<TemplateConfiguration>
		<_Name>Web Application Configuration</_Name>
		<_Category>ASP.NET</_Category>
		<Icon>md-html-file-icon</Icon>
		<LanguageName>C#</LanguageName>
		<ProjectType>AspNetApp</ProjectType>
		<DefaultFilename IsFixed="True">web.config</DefaultFilename>
		<_Description>Creates an ASP.NET web.config file for an application.</_Description>
	</TemplateConfiguration>
	
	<Conditions>
		<ParentProject PermittedCreationPaths="" ExcludedFiles="web.config" RequireProject="True"/>
	</Conditions>

	<!-- Template Content -->
	<TemplateFiles>
		<File name="web.config">
<![CDATA[<?xml version="1.0" ?>
<!--
Web.config file for ${ProjectName}.

The settings that can be used in this file are documented at 
http://www.mono-project.com/Config_system.web and 
http://msdn2.microsoft.com/en-us/library/b5ysx397.aspx
-->
<configuration>
	<system.web>
		<compilation 
			defaultLanguage="C#"
			debug="true"
		>
			<assemblies>
			</assemblies>
		</compilation>
		
		<customErrors
			mode="RemoteOnly" 
		>
		</customErrors>
		
		<authentication
			mode="None"
		>
		</authentication>
		
		<authorization>
			<allow users="*" />
		</authorization>
		
		<httpHandlers>
		</httpHandlers>
		
		<trace 
			enabled="false"
			localOnly="true"
			pageOutput="false"
			requestLimit="10" 
			traceMode="SortByTime"
		/>
		
		<sessionState
			mode="InProc" 
			cookieless="false" 
			timeout="20" 
		/>
		
		<globalization
			requestEncoding="utf-8" 
			responseEncoding="utf-8" 
		/>
		
		<pages>
		</pages>
	</system.web>
</configuration>
]]>
		</File>
	</TemplateFiles>
</Template>