-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathASRClientCore.csproj
More file actions
36 lines (32 loc) · 1.08 KB
/
Copy pathASRClientCore.csproj
File metadata and controls
36 lines (32 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>False</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<UseWindowsForms>False</UseWindowsForms>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<Platforms>AnyCPU;x86</Platforms>
<LangVersion>preview</LangVersion>
<Version>1.6.0</Version>
<Authors>YC</Authors>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\AdbApiWrapper\AdbApiWrapper.vcxproj">
<Private>True</Private>
<CopyLocalSatelliteAssemblies>True</CopyLocalSatelliteAssemblies>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Update="AdbWinApi.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="adbwinapi.lib">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="AdbWinUsbApi.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>