-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMystic_Tools.csproj
53 lines (47 loc) · 1.96 KB
/
Mystic_Tools.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Mystic Tools</AssemblyName>
<NoWin32Manifest>true</NoWin32Manifest>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<Trimming>full</Trimming>
<PublishAot>True</PublishAot>
<ErrorReport>none</ErrorReport>
<Title>Mystic Tools</Title>
<Company />
<Product />
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<UseWPF>False</UseWPF>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
<NoWarn />
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<Deterministic>True</Deterministic>
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>portable</DebugType>
<NoWarn />
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<Deterministic>True</Deterministic>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="EntityFramework" Version="6.2.0" />
<PackageReference Include="EntityFramework.ja" Version="6.2.0" />
<PackageReference Include="ini-parser" Version="2.5.2" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="OpenCvSharp4" Version="4.9.0.20240103" />
<PackageReference Include="OpenCvSharp4.Extensions" Version="4.9.0.20240103" />
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.9.0.20240103" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
</Project>