forked from EverSD-Cart/EverLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEverLoader.csproj
More file actions
76 lines (65 loc) · 2.06 KB
/
EverLoader.csproj
File metadata and controls
76 lines (65 loc) · 2.06 KB
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>images\icon-white.ico</ApplicationIcon>
<Version>2.4.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<EmbeddedResource Remove="bin\**" />
<None Remove="bin\**" />
</ItemGroup>
<ItemGroup>
<None Remove="appsettings.json" />
<None Remove="secrets.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="appsettings.json" />
<EmbeddedResource Include="secrets.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Crc32.NET" Version="1.2.0" />
<PackageReference Include="nQuant" Version="1.0.3" />
<PackageReference Include="TheGamesDBApiWrapper" Version="1.1.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="DropDownControls">
<HintPath>libs\DropDownControls.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Forms\CreateNewFolder.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="Controls\AspectRatioPanel.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Forms\MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Forms\ProgressForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Forms\AboutBox.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>