-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVmbNET.csproj
More file actions
37 lines (31 loc) · 1.26 KB
/
VmbNET.csproj
File metadata and controls
37 lines (31 loc) · 1.26 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Deterministic>False</Deterministic>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Deterministic>False</Deterministic>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Deterministic>False</Deterministic>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Deterministic>False</Deterministic>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
<LangVersion>preview</LangVersion>
</PropertyGroup>
</Project>