forked from StudentBlake/XCI-Explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
XCI Explorer.csproj
95 lines (95 loc) · 3.87 KB
/
XCI Explorer.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{89DBE891-22C7-40FF-A3D3-36F26224E09D}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>WinExe</OutputType>
<AssemblyName>XCI-Explorer</AssemblyName>
<TargetFrameworkIdentifier>.NETFramework</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>XCI_Explorer</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Reference Include="Be.Windows.Forms.HexBox, Version=1.6.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\Be.Windows.Forms.HexBox.1.6.1\lib\net40\Be.Windows.Forms.HexBox.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="XCI_Explorer\CertForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="XCI_Explorer\CertForm.Designer.cs">
<DependentUpon>CertForm.cs</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="XCI_Explorer.Helpers\BetterBinaryReader.cs" />
<Compile Include="XCI_Explorer.Helpers\BetterTreeNode.cs" />
<Compile Include="XCI_Explorer\CNMT.cs" />
<Compile Include="XCI_Explorer\MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="XCI_Explorer\MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="XCI_Explorer\HFS0.cs" />
<Compile Include="XCI_Explorer\NACP.cs" />
<Compile Include="XCI_Explorer\NCA.cs" />
<Compile Include="XCI_Explorer\PFS0.cs" />
<Compile Include="XCI_Explorer\Program.cs" />
<Compile Include="XCI_Explorer\TreeViewFileSystem.cs" />
<Compile Include="XCI_Explorer\Util.cs" />
<Compile Include="XCI_Explorer\XCI.cs" />
<Compile Include="XTSSharp\RandomAccessSectorStream.cs" />
<Compile Include="XTSSharp\SectorStream.cs" />
<Compile Include="XTSSharp\Xts.cs" />
<Compile Include="XTSSharp\XtsAes128.cs" />
<Compile Include="XTSSharp\XtsAes256.cs" />
<Compile Include="XTSSharp\XtsCryptoTransform.cs" />
<Compile Include="XTSSharp\XtsSectorStream.cs" />
<Compile Include="XTSSharp\XtsStream.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="XCI_Explorer\MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Be.Windows.Forms.HexBox.dll" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>