This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
iCode.csproj
145 lines (145 loc) · 6.36 KB
/
iCode.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<OutputType>Exe</OutputType>
<RootNamespace>iCode</RootNamespace>
<AssemblyName>iCode</AssemblyName>
<TargetFramework>netcoreapp3.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;NETCOREAPP;NETCOREAPP3_1</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="atk-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\atk-sharp.dll</HintPath>
</Reference>
<Reference Include="cairo-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\cairo-sharp.dll</HintPath>
</Reference>
<Reference Include="gdk-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\gdk-sharp.dll</HintPath>
</Reference>
<Reference Include="gdl-sharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\gdl-sharp.dll</HintPath>
</Reference>
<Reference Include="generated, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\..\Téléchargements\generated.dll</HintPath>
</Reference>
<Reference Include="gio-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\gio-sharp.dll</HintPath>
</Reference>
<Reference Include="glib-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\glib-sharp.dll</HintPath>
</Reference>
<Reference Include="gtk-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\gtk-sharp.dll</HintPath>
</Reference>
<Reference Include="gtksourceview3-sharp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\gtksourceview3-sharp.dll</HintPath>
</Reference>
<Reference Include="NClang, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\NClang.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="gtksourceview3-sharp">
<HintPath>lib\gtksourceview3-sharp.dll</HintPath>
</Reference>
<Reference Include="pango-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib\pango-sharp.dll</HintPath>
</Reference>
<Reference Include="gtksourceview3-sharp">
<HintPath>lib\gtksourceview3-sharp.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Remove="azure-pipelines.yml" />
<None Remove=".gitignore" />
<None Remove=".gitattributes" />
<None Remove="readme.md" />
<None Remove="iCode.csproj.DotSettings" />
<None Remove="iCode-x86_64.AppImage.zsync" />
<None Update="Updater">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="imobiledevice-net" Version="1.2.186" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
<ItemGroup>
<None Remove="$(SolutionDir)tools\**" />
<None Include="$(SolutionDir)tools\**" CopyToOutputDirectory="PreserveNewest" LinkBase="tools\" />
</ItemGroup>
<ItemGroup>
<None Remove="resources\images\icon.png" />
<EmbeddedResource Include="resources\images\icon.png" />
<None Remove="resources\forms\StartupWindow.ui" />
<EmbeddedResource Include="resources\forms\StartupWindow.ui">
<LogicalName>Startup</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\NewProjectWindow.ui" />
<EmbeddedResource Include="resources\forms\NewProjectWindow.ui">
<LogicalName>NewProject</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\AboutWindow.ui" />
<EmbeddedResource Include="resources\forms\AboutWindow.ui">
<LogicalName>About</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\MainWindow.ui" />
<EmbeddedResource Include="resources\forms\MainWindow.ui">
<LogicalName>MainWindow</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\ProjectExplorerWidget.ui" />
<EmbeddedResource Include="resources\forms\ProjectExplorerWidget.ui">
<LogicalName>ProjectExplorer</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\PropertyWidget.ui" />
<EmbeddedResource Include="resources\forms\PropertyWidget.ui">
<LogicalName>Property</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\WelcomeWidget.ui" />
<EmbeddedResource Include="resources\forms\WelcomeWidget.ui">
<LogicalName>Welcome</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\OutputWidget.ui" />
<EmbeddedResource Include="resources\forms\OutputWidget.ui">
<LogicalName>Output</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\DeviceSelectorWindow.ui" />
<EmbeddedResource Include="resources\forms\DeviceSelectorWindow.ui">
<LogicalName>DeviceSelector</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\ExceptionWindow.ui" />
<EmbeddedResource Include="resources\forms\ExceptionWindow.ui">
<LogicalName>ExceptionWindow</LogicalName>
</EmbeddedResource>
<None Remove="resources\forms\InputWindow.ui" />
<EmbeddedResource Include="resources\forms\InputWindow.ui">
<LogicalName>Input</LogicalName>
</EmbeddedResource>
</ItemGroup>
</Project>