Skip to content

Commit

Permalink
Update to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
200Tigersbloxed committed May 31, 2024
1 parent e5ce43f commit 925249d
Show file tree
Hide file tree
Showing 4 changed files with 252 additions and 153 deletions.
50 changes: 50 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# VSCode Files
.vscode/

# Visual Studio files
.vs/
bin/
obj/
*.exe
*.pdb
*.dll
*.user
*.suo
*.cache
*.log
*.vspscc
*.vssscc
*.psess
*.dbmdl
*.dbproj*
*.VC.db
*.csproj.user
*.bak
*.cache
*.sln.docstates
*.sln.ide-shadows
[Tt]humbs.db
*.dbmdl
*.dbproj*
*.VC.db
*.csproj.user
*.bak
*.cache
*.sln.docstates
*.sln.ide-shadows
[Tt]humbs.db

# JetBrains Rider files
.idea/
*.iml
*.ipr
*.iws
.idea_modules/

# Build results
bin/
obj/

# Ignore files in the SRanipalExtTrackingModule folder
/SRanipalExtTrackingModule/bin/
/SRanipalExtTrackingModule/obj/
29 changes: 26 additions & 3 deletions SRanipalExtTrackingModule/SRanipalExtTrackingModule.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Platforms>x64</Platforms>
<LangVersion>11</LangVersion>
<TargetFrameworks>netstandard2.1;net7.0;net481</TargetFrameworks>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<DebugType>none</DebugType>
</PropertyGroup>

<ItemGroup>
Expand Down Expand Up @@ -34,9 +38,28 @@
</ItemGroup>

<ItemGroup>
<Reference Include="VRCFaceTracking.Core">
<HintPath>..\..\VRCFaceTracking\unity_release\VRCFaceTracking.Core.dll</HintPath>
<Reference Include="VRCFaceTracking.Core" Condition=" '$(TargetFramework)' == 'net481' ">
<HintPath>$(VRCFaceTrackingBuilds)\net481\VRCFaceTracking.Core.dll</HintPath>
</Reference>
<Reference Include="VRCFaceTracking.Core" Condition=" '$(TargetFramework)' == 'netstandard2.1' ">
<HintPath>$(VRCFaceTrackingBuilds)\netstandard2.1\VRCFaceTracking.Core.dll</HintPath>
</Reference>
<Reference Include="VRCFaceTracking.Core" Condition=" '$(TargetFramework)' == 'net7.0' ">
<HintPath>$(VRCFaceTrackingBuilds)\net7.0\VRCFaceTracking.Core.dll</HintPath>
</Reference>
<Reference Include="VRCFaceTracking.SDK" Condition=" '$(TargetFramework)' == 'net481' ">
<HintPath>$(VRCFaceTrackingBuilds)\net481\VRCFaceTracking.SDK.dll</HintPath>
</Reference>
<Reference Include="VRCFaceTracking.SDK" Condition=" '$(TargetFramework)' == 'netstandard2.1' ">
<HintPath>$(VRCFaceTrackingBuilds)\netstandard2.1\VRCFaceTracking.SDK.dll</HintPath>
</Reference>
<Reference Include="VRCFaceTracking.SDK" Condition=" '$(TargetFramework)' == 'net7.0' ">
<HintPath>$(VRCFaceTrackingBuilds)\net7.0\VRCFaceTracking.SDK.dll</HintPath>
</Reference>
</ItemGroup>

<ItemGroup>
<Content Include="SRanipalExtTrackingModule.csproj.user" />
</ItemGroup>

</Project>
Loading

0 comments on commit 925249d

Please sign in to comment.