-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSubtitleMemorize.csproj
106 lines (106 loc) · 4.78 KB
/
SubtitleMemorize.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
102
103
104
105
106
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{9A9A6F79-CA58-42C5-A116-AC1A70F0E623}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>SubtitleMemorize</RootNamespace>
<AssemblyName>SubtitleMemorize</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Commandlineparameters>3</Commandlineparameters>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
<Reference Include="NCalc">
<HintPath>packages\ncalc.1.3.8\lib\NCalc.dll</HintPath>
</Reference>
<Reference Include="atk-sharp">
<HintPath>packages\gtk-sharp3.3.22.0.0\lib\net40\atk-sharp.dll</HintPath>
</Reference>
<Reference Include="cairo-sharp">
<HintPath>packages\gtk-sharp3.3.22.0.0\lib\net40\cairo-sharp.dll</HintPath>
</Reference>
<Reference Include="gdk-sharp">
<HintPath>packages\gtk-sharp3.3.22.0.0\lib\net40\gdk-sharp.dll</HintPath>
</Reference>
<Reference Include="gio-sharp">
<HintPath>packages\gtk-sharp3.3.22.0.0\lib\net40\gio-sharp.dll</HintPath>
</Reference>
<Reference Include="glib-sharp">
<HintPath>packages\gtk-sharp3.3.22.0.0\lib\net40\glib-sharp.dll</HintPath>
</Reference>
<Reference Include="gtk-sharp">
<HintPath>packages\gtk-sharp3.3.22.0.0\lib\net40\gtk-sharp.dll</HintPath>
</Reference>
<Reference Include="gtk-dotnet">
<HintPath>packages\gtk-sharp3.3.22.0.0\lib\net40\gtk-dotnet.dll</HintPath>
</Reference>
<Reference Include="pango-sharp">
<HintPath>packages\gtk-sharp3.3.22.0.0\lib\net40\pango-sharp.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Source\Program.cs" />
<Compile Include="Source\Settings.cs" />
<Compile Include="Source\LineInfo.cs" />
<Compile Include="Source\SubtitleParserASS.cs" />
<Compile Include="Source\ISubtitleParser.cs" />
<Compile Include="Source\StreamInfo.cs" />
<Compile Include="Source\UtilsSubtitle.cs" />
<Compile Include="Source\UtilsCommon.cs" />
<Compile Include="Source\UtilsInputFiles.cs" />
<Compile Include="Source\UtilsVideo.cs" />
<Compile Include="Source\SubtitleMatcher.cs" />
<Compile Include="Source\UtilsImage.cs" />
<Compile Include="Source\EpisodeInfo.cs" />
<Compile Include="Source\SubtitleParserSRT.cs" />
<Compile Include="Source\InfoEncoding.cs" />
<Compile Include="Source\InfoProgress.cs" />
<Compile Include="Source\WorkerAudio.cs" />
<Compile Include="Source\WorkerSnapshot.cs" />
<Compile Include="Source\ITimeSpan.cs" />
<Compile Include="Source\UtilsAlignSubToAudio.cs" />
<Compile Include="Source\UtilsAudio.cs" />
<Compile Include="Source\UtilsAlignSubToSub.cs" />
<Compile Include="Source\CardInfo.cs" />
<Compile Include="Source\PreviewListModel.cs" />
<Compile Include="Source\InfoLanguages.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\GtkSharp.Win32.3.1.2\build\net45\GtkSharp.Win32.targets" Condition="Exists('..\packages\GtkSharp.Win32.3.1.2\build\net45\GtkSharp.Win32.targets')" />
<Import Project="..\packages\GtkSharp.3.1.3\build\net45\GtkSharp.targets" Condition="Exists('..\packages\GtkSharp.3.1.3\build\net45\GtkSharp.targets')" />
<Import Project="packages\gtk-sharp3.3.22.0.0\build\gtk-sharp3.targets" Condition="Exists('packages\gtk-sharp3.3.22.0.0\build\gtk-sharp3.targets')" />
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\gtk.glade" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
</Project>