This file is indexed.

/usr/lib/monodevelop/AddIns/MonoDevelop.MonoGame/templates/MonoGameLinuxProject.xpt.xml is in monodevelop-monogame 2.5.1+dfsg-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<?xml version="1.0"?>
<Template>
	<TemplateConfiguration>
		<_Name>MonoGame Linux Application</_Name>
		<_Category>C#/MonoGame</_Category>
		<Icon>monogame-project</Icon>
		<LanguageName>C#</LanguageName>
		<_Description>Creates a new C# MonoGame Linux Application.</_Description>
	</TemplateConfiguration>
	
	<Actions>
		<Open filename = "Game1.cs"/>
	</Actions>
	
	<Combine name = "${ProjectName}" directory = ".">
		<Options>
			<StartupProject>${ProjectName}</StartupProject>
		</Options>
		
		<Project name = "${ProjectName}" directory = "." type="MonoGame">
			<Options TargetFrameworkVersion="4.0"/>
			<References>
				<Reference type="Gac" refto="System" />
				<Reference type="Gac" refto="System.Xml" />
				<Reference type="Gac" refto="System.Core" />
				<Reference type="Gac" refto="OpenTK" />
				<Reference type="Gac" refto="MonoGame.Framework.Linux" />
				<Reference type="Gac" refto="Lidgren.Network" />
				<Reference type="Gac" refto="Tao.Sdl" />
			</References>
			<Files>
				<File name="Game1.cs" src="MonoGameApplication/Game1.cs" />
				<File name="Program.cs" src="MonoGameApplication/Program.cs" />
				<RawFile name="Icon.png" src="MonoGameApplication/Icon-md.png" />
				<Directory name="Properties">
					<File name="AssemblyInfo.cs" src="MonoGameApplication/AssemblyInfo.cs" />
				</Directory>
				<Directory name="Content">
				</Directory>
			</Files>
		</Project>
	</Combine>
</Template>