forked from Chickenbreadlp/VRCFTVarjoModule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VRCFTVarjoModule.csproj
39 lines (39 loc) · 1.24 KB
/
VRCFTVarjoModule.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<ItemGroup>
<Compile Include="ConfigManager.cs" />
<Compile Include="VarjoTypes.cs" />
<Compile Include="VarjoNativeInterface.cs" />
<Compile Include="VarjoTrackingModule.cs" />
</ItemGroup>
<ItemGroup>
<COMReference Include="IWshRuntimeLibrary">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>0</VersionMinor>
<VersionMajor>1</VersionMajor>
<Guid>f935dc20-1cf0-11d0-adb9-00c04fd58a0b</Guid>
<Lcid>0</Lcid>
<Isolated>false</Isolated>
<EmbedInteropTypes>true</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<ItemGroup>
<Reference Include="VRCFaceTracking.Core">
<HintPath>VRCFaceTracking.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="TrackingLibs\VarjoLib.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Assets\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
</ItemGroup>
</Project>