source: 2014/30/MikkoI/frakt/frakt/frakt/frakt.csproj @ 5650

Revision 5650, 6.4 KB checked in by mijoilmo, 9 years ago (diff)
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <ProjectGuid>{F9E4E698-C16A-4607-A0C5-F26305364268}</ProjectGuid>
5    <ProjectTypeGuids>{6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
6    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
8    <OutputType>WinExe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>frakt</RootNamespace>
11    <AssemblyName>frakt</AssemblyName>
12    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13    <TargetFrameworkProfile>Client</TargetFrameworkProfile>
14    <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
15    <XnaPlatform>Windows</XnaPlatform>
16    <XnaProfile>Reach</XnaProfile>
17    <XnaCrossPlatformGroupID>45c591b1-e34d-43a3-99f0-a0942ef5e421</XnaCrossPlatformGroupID>
18    <XnaOutputType>Game</XnaOutputType>
19    <ApplicationIcon>Game.ico</ApplicationIcon>
20    <Thumbnail>GameThumbnail.png</Thumbnail>
21    <PublishUrl>publish\</PublishUrl>
22    <Install>true</Install>
23    <InstallFrom>Disk</InstallFrom>
24    <UpdateEnabled>false</UpdateEnabled>
25    <UpdateMode>Foreground</UpdateMode>
26    <UpdateInterval>7</UpdateInterval>
27    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
28    <UpdatePeriodically>false</UpdatePeriodically>
29    <UpdateRequired>false</UpdateRequired>
30    <MapFileExtensions>true</MapFileExtensions>
31    <ApplicationRevision>0</ApplicationRevision>
32    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
33    <IsWebBootstrapper>false</IsWebBootstrapper>
34    <UseApplicationTrust>false</UseApplicationTrust>
35    <BootstrapperEnabled>true</BootstrapperEnabled>
36  </PropertyGroup>
37  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
38    <DebugSymbols>true</DebugSymbols>
39    <DebugType>full</DebugType>
40    <Optimize>false</Optimize>
41    <OutputPath>bin\x86\Debug</OutputPath>
42    <DefineConstants>DEBUG;TRACE;WINDOWS</DefineConstants>
43    <ErrorReport>prompt</ErrorReport>
44    <WarningLevel>4</WarningLevel>
45    <NoStdLib>true</NoStdLib>
46    <UseVSHostingProcess>false</UseVSHostingProcess>
47    <PlatformTarget>x86</PlatformTarget>
48    <XnaCompressContent>false</XnaCompressContent>
49  </PropertyGroup>
50  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
51    <DebugType>pdbonly</DebugType>
52    <Optimize>true</Optimize>
53    <OutputPath>bin\x86\Release</OutputPath>
54    <DefineConstants>TRACE;WINDOWS</DefineConstants>
55    <ErrorReport>prompt</ErrorReport>
56    <WarningLevel>4</WarningLevel>
57    <NoStdLib>true</NoStdLib>
58    <UseVSHostingProcess>false</UseVSHostingProcess>
59    <PlatformTarget>x86</PlatformTarget>
60    <XnaCompressContent>true</XnaCompressContent>
61  </PropertyGroup>
62  <ItemGroup>
63    <Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
64    <Reference Include="Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
65    <Reference Include="Microsoft.Xna.Framework.Graphics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
66    <Reference Include="Microsoft.Xna.Framework.GamerServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
67    <Reference Include="mscorlib" />
68    <Reference Include="System" />
69    <Reference Include="System.Xml" />
70    <Reference Include="System.Core" />
71    <Reference Include="System.Xml.Linq" />
72    <Reference Include="System.Net" />
73  </ItemGroup>
74  <ItemGroup>
75    <Compile Include="Properties\AssemblyInfo.cs" />
76    <Compile Include="Program.cs" />
77    <Compile Include="Game1.cs" />
78  </ItemGroup>
79  <ItemGroup>
80    <Content Include="Game.ico" />
81    <Content Include="GameThumbnail.png">
82      <XnaPlatformSpecific>true</XnaPlatformSpecific>
83    </Content>
84  </ItemGroup>
85  <ItemGroup>
86    <ProjectReference Include="..\fraktContent\fraktContent.contentproj">
87      <Name>fraktContent</Name>
88      <XnaReferenceType>Content</XnaReferenceType>
89    </ProjectReference>
90  </ItemGroup>
91  <ItemGroup>
92    <BootstrapperPackage Include=".NETFramework,Version=v4.0,Profile=Client">
93      <Visible>False</Visible>
94      <ProductName>Microsoft .NET Framework 4 Client Profile %28x86 and x64%29</ProductName>
95      <Install>true</Install>
96    </BootstrapperPackage>
97    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
98      <Visible>False</Visible>
99      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
100      <Install>false</Install>
101    </BootstrapperPackage>
102    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
103      <Visible>False</Visible>
104      <ProductName>.NET Framework 3.5 SP1</ProductName>
105      <Install>false</Install>
106    </BootstrapperPackage>
107    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
108      <Visible>False</Visible>
109      <ProductName>Windows Installer 3.1</ProductName>
110      <Install>true</Install>
111    </BootstrapperPackage>
112    <BootstrapperPackage Include="Microsoft.Xna.Framework.4.0">
113      <Visible>False</Visible>
114      <ProductName>Microsoft XNA Framework Redistributable 4.0</ProductName>
115      <Install>true</Install>
116    </BootstrapperPackage>
117  </ItemGroup>
118  <ItemGroup>
119    <None Include="fonts\arial.ttf" />
120    <None Include="fonts\arialbd.ttf" />
121    <None Include="fonts\arialbi.ttf" />
122    <None Include="fonts\ariali.ttf" />
123    <None Include="fonts\ARIALN.TTF" />
124    <None Include="fonts\ARIALNB.TTF" />
125    <None Include="fonts\ARIALNBI.TTF" />
126    <None Include="fonts\ARIALNI.TTF" />
127    <None Include="fonts\ariblk.ttf" />
128    <None Include="fonts\c.spritefont" />
129  </ItemGroup>
130  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
131  <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" />
132  <!--
133      To modify your build process, add your task inside one of the targets below and uncomment it.
134      Other similar extension points exist, see Microsoft.Common.targets.
135      <Target Name="BeforeBuild">
136      </Target>
137      <Target Name="AfterBuild">
138      </Target>
139    -->
140</Project>
Note: See TracBrowser for help on using the repository browser.