-
Notifications
You must be signed in to change notification settings - Fork 2
/
ATCFS.csproj
101 lines (101 loc) · 4.57 KB
/
ATCFS.csproj
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{FC8BB003-BC1D-45D0-8DF8-487CB0C58FC3}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<OutputType>Library</OutputType>
<RootNamespace>ATCFS</RootNamespace>
<AssemblyName>ATCFS</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>
<SourceAnalysisOverrideSettingsFile>C:\Documents and Settings\Administrator\Application Data\ICSharpCode/SharpDevelop3.0\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<NoStdLib>False</NoStdLib>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\Data\Plugins\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\Data\Plugins\</OutputPath>
<DebugSymbols>false</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
<RegisterForComInterop>False</RegisterForComInterop>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<BaseAddress>4194304</BaseAddress>
<PlatformTarget>AnyCPU</PlatformTarget>
<FileAlignment>4096</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<PlatformTarget>x86</PlatformTarget>
<OutputPath>..\..\..\bin_release\Data\Plugins\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<OutputPath>..\..\..\bin_debug\Data\Plugins\</OutputPath>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Accel.cs" />
<Compile Include="Atc.cs" />
<Compile Include="AtsP.cs" />
<Compile Include="BaseFunc.cs" />
<Compile Include="Device.cs" />
<Compile Include="IniParser\Exceptions\ParsingException.cs" />
<Compile Include="IniParser\FileIniParser.cs" />
<Compile Include="IniParser\Helpers\Assert.cs" />
<Compile Include="LoadConfig.cs" />
<Compile Include="IniParser\Model\Configuration\ConcatenateDuplicatedKeysIniParserConfiguration.cs" />
<Compile Include="IniParser\Model\Configuration\IniParserConfiguration.cs" />
<Compile Include="IniParser\Model\Formatting\DefaultIniDataFormatter.cs" />
<Compile Include="IniParser\Model\Formatting\IIniDataFormatter.cs" />
<Compile Include="IniParser\Model\IniData.cs" />
<Compile Include="IniParser\Model\IniDataCaseInsensitive.cs" />
<Compile Include="IniParser\Model\KeyData.cs" />
<Compile Include="IniParser\Model\KeyDataCollection.cs" />
<Compile Include="IniParser\Model\SectionData.cs" />
<Compile Include="IniParser\Model\SectionDataCollection.cs" />
<Compile Include="IniParser\Parser\ConcatenateDuplicatedKeysIniDataParser.cs" />
<Compile Include="IniParser\Parser\IniDataParser.cs" />
<Compile Include="Plugin.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Sounds.cs" />
<Compile Include="IniParser\StreamIniDataParser.cs" />
<Compile Include="IniParser\StringIniParser.cs" />
<Compile Include="Sub.cs" />
<Compile Include="Train.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\OpenBveApi\OpenBveApi.csproj">
<Project>{27134980-4415-4375-A564-40A9014DFA5F}</Project>
<Name>OpenBveApi</Name>
<Private>False</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="Project Items\github.css" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
</ItemGroup>
</Project>