-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathVirtualDesktop.FaceTracking.csproj
51 lines (42 loc) · 1.64 KB
/
VirtualDesktop.FaceTracking.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Globals">
<SccProjectName>SAK</SccProjectName>
<SccProvider>SAK</SccProvider>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Copyright>Copyright © Virtual Desktop, Inc. 2014-2023</Copyright>
<PackageProjectUrl>https://www.vrdesktop.net</PackageProjectUrl>
<PlatformTarget>x64</PlatformTarget>
<FileVersion>1.1</FileVersion>
<AssemblyVersion>1.1</AssemblyVersion>
<Version>1.1</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="VirtualDesktop.FaceTracking.csproj.vspscc" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Logo256.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="VRCFaceTracking.Core">
<HintPath>..\..\..\3rdParty\VRCFaceTracking\VRCFaceTracking.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="module.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if $(ConfigurationName) == Release (powershell.exe -Command Compress-Archive -Path '$(TargetDir)\$(ProjectName).dll', '$(TargetDir)\module.json' -DestinationPath '$(TargetDir)\VirtualDesktop.VRCFaceTracking.zip' -Force)" />
</Target>
</Project>