Buildings added, Info and Upgrade Menus Display data, Scriptable Object improved

This commit is contained in:
Sewmina 2022-04-11 03:53:31 +05:30
parent 3581fe785d
commit 50162171d6
77 changed files with 3747 additions and 8891 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@
/Logs/*
/UserSettings/*
/.vscode/*
*.csproj

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -10,6 +10,10 @@ MonoBehaviour:
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 0f0adcd9d9fe1cd78b1cc91fd454aa46, type: 3}
m_Name: Communication Center
m_Name: Generic Building
m_EditorClassIdentifier:
buildingName: Communication Center
buildingName: Generic Building
levels:
- level: 1
stats: []
description: This is just a Generic Building

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 3f14a9fbb66d4461eabb30a42aa5007a
guid: 049b5ae28348bbbe9ade489466ecf9a8
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000

View File

@ -0,0 +1,33 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 0f0adcd9d9fe1cd78b1cc91fd454aa46, type: 3}
m_Name: Hall
m_EditorClassIdentifier:
buildingName: Hall
levels:
- level: 1
stats:
- name: Stat 1
value: 120
- name: Power
value: 2
- name: Energy
value: 50
- level: 2
stats:
- name: Stat 1
value: 200
- name: Power
value: 30
- name: Energy
value: 500
description: This is the Hall (Main Hall)

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 877632c6c68b29db29d24a00ca56d609
guid: b8064a67361de4c648b86f3642bb0317
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000

View File

@ -10,6 +10,12 @@ MonoBehaviour:
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 0f0adcd9d9fe1cd78b1cc91fd454aa46, type: 3}
m_Name: Greenhouse
m_Name: Mine
m_EditorClassIdentifier:
buildingName: Greenhouse
buildingName: Mine
levels:
- level: 1
stats:
- name: Production rate
value: 10%
description: This is a mine

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: bdcfae8248ea0e27fa898d27a47a42a0
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,23 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 0f0adcd9d9fe1cd78b1cc91fd454aa46, type: 3}
m_Name: MoonMineral
m_EditorClassIdentifier:
buildingName: Moon Minerals Mine
levels:
- level: 1
stats:
- name: Minerals
value: 5
- name: Power
value: 10
description: This is a Moon Minerals Mine

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3f0a72c466f9c377ead12bf642749171
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,23 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 0f0adcd9d9fe1cd78b1cc91fd454aa46, type: 3}
m_Name: O2Mine
m_EditorClassIdentifier:
buildingName: Oxygen Mine
levels:
- level: 1
stats:
- name: Oxygen
value: 10
- name: Power
value: 2
description: This is an Oxygen Mine

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a238dc5ab1ae2deaaaaf77548375bd68
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -12,4 +12,22 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 0f0adcd9d9fe1cd78b1cc91fd454aa46, type: 3}
m_Name: Research Facility
m_EditorClassIdentifier:
buildingName: Research Facility
buildingName: Research Lab
levels:
- level: 1
stats:
- name: Power
value: 250
- name: Speed
value: 50
- name: Something else
value: 40 %
- level: 2
stats:
- name: Power
value: 600
- name: Speed
value: 90
- name: Something else
value: 80 %
description: This is a Research Lab

View File

@ -5,20 +5,28 @@ using UnityEngine;
public class Building : MonoBehaviour
{
public BuildingData buildingData;
public Outline outline;
public int curLevel;
public Outline[] outlines;
void Awake(){
if(outline == null){outline = GetComponent<Outline>();}
outline.enabled=false;
//if(outline == null){outline = GetComponent<Outline>();}
outlines = GetComponentsInChildren<Outline>();
ToggleOutlines(false);
Selector.OnSelectedChanged.AddListener(OnSelectedChanged);
}
void OnSelectedChanged(){
if(Selector.selectedBuilding == null){outline.enabled=false; return;}
if(Selector.selectedBuilding == null){ToggleOutlines(false); return;}
outline.enabled = Selector.selectedBuilding == this;
ToggleOutlines(Selector.selectedBuilding == this);
// Debug.Log(buildingName);
}
void ToggleOutlines(bool value){
foreach(Outline outline in outlines){
outline.enabled = value;
}
}
/* */
}

View File

@ -1,7 +1,36 @@
using UnityEngine;
using System.Collections.Generic;
[CreateAssetMenu(fileName = "Building01", menuName = "GameData/BuildingData", order = 1)]
public class BuildingData : ScriptableObject
{
public string buildingName;
public List<BuildingLevel> levels = new List<BuildingLevel>{
new BuildingLevel(1,new List<BuildingStat>())
};
public string description;
}
[System.Serializable]
public class BuildingStat{
public string name;
public string value;
public BuildingStat(string _name, string _value){
name= _name;
value = _value;
}
}
[System.Serializable]
public class BuildingLevel{
public int level = 0;
public List<BuildingStat> stats;
public BuildingLevel(int _level, List<BuildingStat> _stats){
level = _level;
stats = _stats;
}
}

View File

@ -2,41 +2,76 @@ using UnityEngine.UI;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;
public class SelectedItemMenu : MonoBehaviour
{
public Text nameTxt;
public Button upgradeBtn;
public Button infoBtn;
public UpgradeMenuItem[] menus;
[Header("info menu")]
public GameObject infoMenu;
public TMP_Text descriptionTxt;
[Header("upgrade menu")]
public GameObject upgradeMenu;
public Transform upgrade_statParent;
void Start()
{
Selector.OnSelectedChanged.AddListener(OnSelectionChanged);
upgradeBtn.onClick.AddListener(OnUpgradeClicked);
infoBtn.onClick.AddListener(OnInfoClicked);
gameObject.SetActive(false);
}
void OnUpgradeClicked(){
// Debug.Log("Opening Upgrade Menu for : " + Selector.selectedBuilding.buildingData.name);
for(int i = 0; i < menus.Length; i++){
menus[i].upgradeMenu.SetActive(menus[i].relatedBuildings.Contains(Selector.selectedBuilding.buildingData));
void OnSelectionChanged()
{
if (Selector.selectedBuilding != null)
{
infoBtn.gameObject.SetActive(true);
if (Selector.selectedBuilding.buildingData.levels.Count <= 1)
{
upgradeBtn.gameObject.SetActive(false);
}
else
{
upgradeBtn.gameObject.SetActive(true);
}
}
else
{
upgradeBtn.gameObject.SetActive(false);
infoBtn.gameObject.SetActive(false);
}
}
void OnInfoClicked(){
// Debug.Log("Opening Info Menu for : " + Selector.selectedBuilding.buildingData.name);
for(int i = 0; i < menus.Length; i++){
menus[i].infoMenu.SetActive(menus[i].relatedBuildings.Contains(Selector.selectedBuilding.buildingData));
void OnUpgradeClicked()
{
Debug.Log("Opening Upgrade Menu for : " + Selector.selectedBuilding.buildingData.name);
upgradeMenu.SetActive(true);
List<BuildingStat> stats = Selector.selectedBuilding.buildingData.levels[Selector.selectedBuilding.curLevel].stats;
for (int i = 0; i < upgrade_statParent.childCount; i++)
{
bool hasDataForThis = i < stats.Count;
upgrade_statParent.GetChild(i).gameObject.SetActive(hasDataForThis);
if (hasDataForThis)
{
upgrade_statParent.GetChild(i).GetChild(0).GetComponent<TMP_Text>().text = stats[i].name;
upgrade_statParent.GetChild(i).GetChild(1).GetComponent<TMP_Text>().text = stats[i].value;
}
}
if (upgrade_statParent.childCount > stats.Count)
{
Debug.LogError("Please add another slot for stats in upgrade menu.\nSlots not enough for " + Selector.selectedBuilding.buildingData.name + " , " + upgrade_statParent.childCount + " slots for " + stats.Count + " stats");
}
}
}
void OnInfoClicked()
{
Debug.Log("Opening Info Menu for : " + Selector.selectedBuilding.buildingData.name);
[System.Serializable]
public class UpgradeMenuItem{
public GameObject upgradeMenu;
public GameObject infoMenu;
public List<BuildingData> relatedBuildings;
}
infoMenu.SetActive(true);
descriptionTxt.text = Selector.selectedBuilding.buildingData.description;
}
}

View File

@ -10,7 +10,6 @@ public class WorldItemSelector : MonoBehaviour
public float moveThreshold = 1;
public LayerMask layerMask;
public Transform selectedItemUI;
public void SelectScreenPoint(Vector2 screenPoint){
Ray ray = Camera.main.ScreenPointToRay(screenPoint);
RaycastHit hit = new RaycastHit();
@ -24,30 +23,12 @@ public class WorldItemSelector : MonoBehaviour
Debug.Log("No target here, Unselecting");
Selector.selectBuilding(null);
}
RefreshUI();
}else{
Selector.selectBuilding(null);
}
}
public void RefreshUI(){
selectedItemUI.gameObject.SetActive(Selector.selectedBuilding !=null);
if(Selector.selectedBuilding!=null){
selectedItemUI.GetChild(0).GetComponent<Text>().text = Selector.selectedBuilding.buildingData.buildingName;
}
// switch (Selector.selectedBuilding.buildingData.buildingName)
// {
// case "Research Facility":
// Debug.Log("research facility menu");
// break;
// case "Green House":
// Debug.Log("green house menu");
// break;
// }
}
private Vector2 startedPos= Vector2.zero;
public void OnPointerDown(BaseEventData e){

View File

@ -1,9 +1,8 @@
{
"dependencies": {
"com.unity.collab-proxy": "1.15.13",
"com.unity.ide.rider": "2.0.7",
"com.unity.ide.visualstudio": "2.0.14",
"com.unity.ide.vscode": "1.2.5",
"com.unity.ide.vscode": "1.2.4",
"com.unity.render-pipelines.universal": "10.8.1",
"com.unity.test-framework": "1.1.31",
"com.unity.textmeshpro": "3.0.6",

View File

@ -16,15 +16,6 @@
"dependencies": {},
"url": "https://packages.unity.com"
},
"com.unity.ide.rider": {
"version": "2.0.7",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.test-framework": "1.1.1"
},
"url": "https://packages.unity.com"
},
"com.unity.ide.visualstudio": {
"version": "2.0.14",
"depth": 0,
@ -35,7 +26,7 @@
"url": "https://packages.unity.com"
},
"com.unity.ide.vscode": {
"version": "1.2.5",
"version": "1.2.4",
"depth": 0,
"source": "registry",
"dependencies": {},

View File

@ -590,9 +590,7 @@ PlayerSettings:
switchPlayerConnectionEnabled: 1
switchUseNewStyleFilepaths: 0
switchUseMicroSleepForYield: 1
switchEnableRamDiskSupport: 0
switchMicroSleepForYieldTime: 25
switchRamDiskSpaceSize: 12
ps4NPAgeRating: 12
ps4NPTitleSecret:
ps4NPTrophyPackPath:
@ -705,7 +703,8 @@ PlayerSettings:
gcIncremental: 1
assemblyVersionValidation: 1
gcWBarrierValidation: 0
apiCompatibilityLevelPerPlatform: {}
apiCompatibilityLevelPerPlatform:
Android: 6
m_RenderingPath: 1
m_MobileRenderingPath: 1
metroPackageName: Template_3D
@ -734,7 +733,6 @@ PlayerSettings:
metroFTAName:
metroFTAFileTypes: []
metroProtocolName:
vcxProjDefaultLanguage:
XboxOneProductId:
XboxOneUpdateKey:
XboxOneSandboxId:

113
UPF.sln
View File

@ -1,18 +1,119 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{81D9F3F8-C93A-B7A8-EA43-2868619EFE2A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityEngine.UI", "UnityEngine.UI.csproj", "{b4ac23e1-f788-99ec-b4d4-f4db4249a6d3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.RenderPipelines.Core.Runtime", "Unity.RenderPipelines.Core.Runtime.csproj", "{b0558cdb-64c9-3a15-92e8-c93ae5b494ac}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityEngine.TestRunner", "UnityEngine.TestRunner.csproj", "{4b099d95-4be9-a4aa-edb7-33f78a7d2efe}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Mathematics", "Unity.Mathematics.csproj", "{0bd64dde-46cc-a28c-b84b-e0522f6fed97}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{f8f3d981-3ac9-a8b7-ea43-2868619efe2a}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.RenderPipelines.Universal.Runtime", "Unity.RenderPipelines.Universal.Runtime.csproj", "{e581676b-e515-94dc-c7ee-e5158f5af96b}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.TextMeshPro", "Unity.TextMeshPro.csproj", "{968fcd68-5785-2424-a8b1-57d977f064ee}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Timeline", "Unity.Timeline.csproj", "{3c396443-9c6c-69d1-7248-8e6b6a3580d2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.RenderPipelines.Core.ShaderLibrary", "Unity.RenderPipelines.Core.ShaderLibrary.csproj", "{c9a516c3-de53-877b-b458-f8a67e878a04}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.RenderPipeline.Universal.ShaderLibrary", "Unity.RenderPipeline.Universal.ShaderLibrary.csproj", "{72f9865c-6891-ed55-bfc3-e1d7c8e26394}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.RenderPipelines.Universal.Shaders", "Unity.RenderPipelines.Universal.Shaders.csproj", "{a565100f-fe57-c681-fc17-3c645ba47452}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary", "Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.csproj", "{8e40b3fc-8515-5589-cc5f-4fbc4ecf3ab2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.PlasticSCM.Editor", "Unity.PlasticSCM.Editor.csproj", "{3fc5e71b-00d4-6906-3b4f-dab1d0795696}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.ShaderGraph.Editor", "Unity.ShaderGraph.Editor.csproj", "{885e274e-7f50-a377-4930-562fc60828cc}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.VisualStudio.Editor", "Unity.VisualStudio.Editor.csproj", "{ed8b43dd-4d8e-01b1-673f-fd1a268b0a02}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Timeline.Editor", "Unity.Timeline.Editor.csproj", "{bbd5d945-3371-201c-a412-b472d2b13b80}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.TextMeshPro.Editor", "Unity.TextMeshPro.Editor.csproj", "{52312059-599b-ab0f-8b82-9e6cc546efd5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.CollabProxy.Editor", "Unity.CollabProxy.Editor.csproj", "{40c3d5a7-8695-a89e-b884-01ff4239925b}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityEditor.TestRunner", "UnityEditor.TestRunner.csproj", "{26f23d52-7433-1b44-0570-9da4a33f7995}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.RenderPipelines.Universal.Editor", "Unity.RenderPipelines.Universal.Editor.csproj", "{0944cd92-8f3d-69a1-8713-2c99f884a0a8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Services.Core.Editor", "Unity.Services.Core.Editor.csproj", "{02de4d4e-b0e9-6f14-19ec-bc90a8fc62a5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.RenderPipelines.Core.Editor", "Unity.RenderPipelines.Core.Editor.csproj", "{b4be5cdf-66d4-ea8e-f726-9bf045e13587}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Searcher.Editor", "Unity.Searcher.Editor.csproj", "{c57ac926-239a-b887-19f0-e9834f17b0fe}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.VSCode.Editor", "Unity.VSCode.Editor.csproj", "{46971bd6-6e06-6e02-f6cc-f2a57fe23d9b}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnityEditor.UI", "UnityEditor.UI.csproj", "{d6fbbd1f-59ed-334c-8652-133616ce63a4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.Mathematics.Editor", "Unity.Mathematics.Editor.csproj", "{d322fda3-5976-c697-265b-cc32f8c52c18}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unity.ShaderGraph.Utilities", "Unity.ShaderGraph.Utilities.csproj", "{4bb84661-785f-28e0-8162-52d940cc5908}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{81D9F3F8-C93A-B7A8-EA43-2868619EFE2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{81D9F3F8-C93A-B7A8-EA43-2868619EFE2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{81D9F3F8-C93A-B7A8-EA43-2868619EFE2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{81D9F3F8-C93A-B7A8-EA43-2868619EFE2A}.Release|Any CPU.Build.0 = Release|Any CPU
{b4ac23e1-f788-99ec-b4d4-f4db4249a6d3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{b4ac23e1-f788-99ec-b4d4-f4db4249a6d3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{b0558cdb-64c9-3a15-92e8-c93ae5b494ac}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{b0558cdb-64c9-3a15-92e8-c93ae5b494ac}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4b099d95-4be9-a4aa-edb7-33f78a7d2efe}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4b099d95-4be9-a4aa-edb7-33f78a7d2efe}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0bd64dde-46cc-a28c-b84b-e0522f6fed97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0bd64dde-46cc-a28c-b84b-e0522f6fed97}.Debug|Any CPU.Build.0 = Debug|Any CPU
{f8f3d981-3ac9-a8b7-ea43-2868619efe2a}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{f8f3d981-3ac9-a8b7-ea43-2868619efe2a}.Debug|Any CPU.Build.0 = Debug|Any CPU
{e581676b-e515-94dc-c7ee-e5158f5af96b}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{e581676b-e515-94dc-c7ee-e5158f5af96b}.Debug|Any CPU.Build.0 = Debug|Any CPU
{968fcd68-5785-2424-a8b1-57d977f064ee}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{968fcd68-5785-2424-a8b1-57d977f064ee}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3c396443-9c6c-69d1-7248-8e6b6a3580d2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3c396443-9c6c-69d1-7248-8e6b6a3580d2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{c9a516c3-de53-877b-b458-f8a67e878a04}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{c9a516c3-de53-877b-b458-f8a67e878a04}.Debug|Any CPU.Build.0 = Debug|Any CPU
{72f9865c-6891-ed55-bfc3-e1d7c8e26394}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{72f9865c-6891-ed55-bfc3-e1d7c8e26394}.Debug|Any CPU.Build.0 = Debug|Any CPU
{a565100f-fe57-c681-fc17-3c645ba47452}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{a565100f-fe57-c681-fc17-3c645ba47452}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8e40b3fc-8515-5589-cc5f-4fbc4ecf3ab2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8e40b3fc-8515-5589-cc5f-4fbc4ecf3ab2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3fc5e71b-00d4-6906-3b4f-dab1d0795696}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3fc5e71b-00d4-6906-3b4f-dab1d0795696}.Debug|Any CPU.Build.0 = Debug|Any CPU
{885e274e-7f50-a377-4930-562fc60828cc}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{885e274e-7f50-a377-4930-562fc60828cc}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ed8b43dd-4d8e-01b1-673f-fd1a268b0a02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ed8b43dd-4d8e-01b1-673f-fd1a268b0a02}.Debug|Any CPU.Build.0 = Debug|Any CPU
{bbd5d945-3371-201c-a412-b472d2b13b80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{bbd5d945-3371-201c-a412-b472d2b13b80}.Debug|Any CPU.Build.0 = Debug|Any CPU
{52312059-599b-ab0f-8b82-9e6cc546efd5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{52312059-599b-ab0f-8b82-9e6cc546efd5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{40c3d5a7-8695-a89e-b884-01ff4239925b}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{40c3d5a7-8695-a89e-b884-01ff4239925b}.Debug|Any CPU.Build.0 = Debug|Any CPU
{26f23d52-7433-1b44-0570-9da4a33f7995}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{26f23d52-7433-1b44-0570-9da4a33f7995}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0944cd92-8f3d-69a1-8713-2c99f884a0a8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0944cd92-8f3d-69a1-8713-2c99f884a0a8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{02de4d4e-b0e9-6f14-19ec-bc90a8fc62a5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{02de4d4e-b0e9-6f14-19ec-bc90a8fc62a5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{b4be5cdf-66d4-ea8e-f726-9bf045e13587}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{b4be5cdf-66d4-ea8e-f726-9bf045e13587}.Debug|Any CPU.Build.0 = Debug|Any CPU
{c57ac926-239a-b887-19f0-e9834f17b0fe}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{c57ac926-239a-b887-19f0-e9834f17b0fe}.Debug|Any CPU.Build.0 = Debug|Any CPU
{46971bd6-6e06-6e02-f6cc-f2a57fe23d9b}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{46971bd6-6e06-6e02-f6cc-f2a57fe23d9b}.Debug|Any CPU.Build.0 = Debug|Any CPU
{d6fbbd1f-59ed-334c-8652-133616ce63a4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{d6fbbd1f-59ed-334c-8652-133616ce63a4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{d322fda3-5976-c697-265b-cc32f8c52c18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{d322fda3-5976-c697-265b-cc32f8c52c18}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4bb84661-785f-28e0-8162-52d940cc5908}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4bb84661-785f-28e0-8162-52d940cc5908}.Debug|Any CPU.Build.0 = Debug|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -36,42 +36,19 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/IModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/IStartView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Utilities/MenuUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/Menus/FloatingMenuItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/Adapters/IAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/SettingsProviderVisuals/LearnMoreVisualHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/IconButton.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/SearchBar.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/SettingsProviderVisuals/EnabledVisuals.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Utilities/Threading.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/MainPageView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/HistoryModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/StartPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeListElements/ToggleableChangeListElement.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/CloudCollabService.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/ChangesTabPageView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/TextButton.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/IHistoryModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Utilities/OpenLinksUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/IHistoryPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/Menus/FloatingMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/UserInterface/Bootstrap.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/MainModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/IChangesPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/CloudCollabSettingsProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/IHistoryView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/HistoryTabPageView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/IMainModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeListElements/ChangeListElement.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/UserInterface/ToolbarButton.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeListElements/BaseChangeListElement.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/AlertBox.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/StartPageView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/BetterTextField.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/SettingsProviderVisuals/CloudCollabVisuals.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/IChangeEntryData.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/ProgressInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/IPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/ErrorInfo.cs" />
@ -79,14 +56,61 @@
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangesGroupHeader.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Common/ScriptableObjectSingleton.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/IView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Assets/StringAssets.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/PageComponent.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Utilities/StringUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/HistoryEntryComponent.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Common/ArrayContainer.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/Menus/FloatingDialogue.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Settings/CollabSettingsManager.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/IChangesView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Common/SerializableDictionary.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/HistoryEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Api/ISourceControlProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/Adapters/ListAdapters/ConflictedChangeListAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/UserInterface/WindowCache.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/StartModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Settings/CollabSettingsProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/IMainPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/ChangesPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/TabView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/Adapters/ListAdapters/HistoryEntryChangeListAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Assets/UiConstants.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Common/LocationAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ProgressView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeListElements/HistoryChangeListElement.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/IStartModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeEntryGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Settings/CollabSetting.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/IChangeEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/IErrorInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/Paginator.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/TopBar.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Utilities/ExtensionMethods.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/IMainView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/IModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Utilities/MenuUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/Menus/FloatingMenuItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/SettingsProviderVisuals/LearnMoreVisualHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/IconButton.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/SettingsProviderVisuals/EnabledVisuals.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/MainPageView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/HistoryModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/StartPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeListElements/ToggleableChangeListElement.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/ChangesTabPageView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/IHistoryModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Utilities/OpenLinksUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/Menus/FloatingMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/UserInterface/Bootstrap.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/IChangesPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/HistoryTabPageView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/IMainModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeListElements/ChangeListElement.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeListElements/BaseChangeListElement.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/AlertBox.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/BetterTextField.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/IChangeEntryData.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Assets/StringAssets.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/PageComponent.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/HistoryEntryComponent.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/Menus/FloatingDialogue.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/Adapters/ListAdapters/ToggleableChangeListAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Common/StringArrayContainer.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/UserInterface/CollaborateWindow.cs" />
@ -94,35 +118,16 @@
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/CloudCollabServiceIdentifier.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Providers/Collab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/TabPageComponent.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Common/SerializableDictionary.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/CloudCollabTopMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ListNotice.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/SettingsProviderVisuals/IVisuals.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/HistoryEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Api/ISourceControlProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/IChangesModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/Adapters/ListAdapters/ConflictedChangeListAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/CloudCollabEnabler.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/ChangesModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/UserInterface/WindowCache.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/StartModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Settings/CollabSettingsProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/IMainPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/SettingsProviderVisuals/DisabledVisuals.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/ChangesPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/TabView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/Adapters/ListAdapters/HistoryEntryChangeListAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Assets/UiConstants.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Common/LocationAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ProgressView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/IStartPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeListElements/HistoryChangeListElement.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/Adapters/IAdapterObserver.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/IStartModel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/ChangeEntryGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Settings/CollabSetting.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Settings/CollabSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/IChangeEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/EditorGameService/Analytics/EditorGameServiceAnalyticsSender.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/Adapters/ListAdapters/BaseListAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Enums/ProjectStatus.cs" />
@ -131,15 +136,10 @@
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/IHistoryEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Presenters/MainPresenter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/IconTextButton.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/IErrorInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/Paginator.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Properties/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/TopBar.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Utilities/ExtensionMethods.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Components/AdapterListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Models/Structures/IProgressInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Utilities/TimeStamp.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Views/IMainView.cs" />
<None Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Assets/Styles/ChangesTabPageView.uss" />
<None Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Assets/Styles/ProgressView.uss" />
<None Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/Collaborate/Assets/Styles/HistoryEntryComponent.uss" />
@ -429,6 +429,9 @@
<Reference Include="log4netPlastic">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.collab-proxy@1.15.13/Lib/Editor/PlasticSCM/log4netPlastic.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.NRefactory">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ICSharpCode.NRefactory.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll</HintPath>
</Reference>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -36,10 +36,10 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics.Editor/PrimitiveVectorDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics.Editor/MatrixDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics.Editor/PostNormalizedVectorDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics.Editor/QuaternionDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics.Editor/PrimitiveVectorDrawer.cs" />
<None Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics.Editor/Unity.Mathematics.Editor.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -37,71 +37,76 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/cellular2x2.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/half3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double2x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float4x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/common.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint4x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int4x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int2x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int3x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/quaternion.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double4x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint2x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/noise4D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint3x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double3x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/math.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool3x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int2x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool4x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/classicnoise3D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/cellular2x2x2.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/psrdnoise2D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool4x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool3x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int4x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint4x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double3x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/cellular2x2.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double2x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/common.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/half2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool3x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint4x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int2x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float4x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int3x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/quaternion.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double4x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double4x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/PropertyAttributes.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/noise3D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint3x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint2x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/noise4D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool2x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint3x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double3x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/matrix.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/half4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint2x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/rigid_transform.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/classicnoise4D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/math.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double4x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int4x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double2x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int3x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/cellular2D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/classicnoise2D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float3x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool3x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int2x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/cellular3D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool4x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/noise3Dgrad.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool4x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double2x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint3x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int2x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool2x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/classicnoise3D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double3x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/cellular2x2x2.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/matrix.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float4x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/noise2D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/Noise/psrdnoise2D.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool2x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float3x4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float2x4.gen.cs" />
@ -109,15 +114,10 @@
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/math_unity_conversion.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float2x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int3x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool4x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/bool3x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/int4x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float2x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/half.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/random.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint2x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint4x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/double3x2.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float3x3.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/uint4.gen.cs" />
<Compile Include="Library/PackageCache/com.unity.mathematics@1.1.0/Unity.Mathematics/float2.gen.cs" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -37,285 +37,285 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/GetClientDiffInfos.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/EmptyCheckinMessageDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticProjectSettingsProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/TreeViewItemIds.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticApp.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Avatar/ApplyCircleMask.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/GetRelativePath.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/ProgressOperationHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Branch/CreateBranchDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/GuiEnabled.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingMergeLinks/MergeLinkListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawTextBlockWithEndLink.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingChangesViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/TableViewOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UIElements/TabView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/ChangeCategoryTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistorySelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/PlasticDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Inspector/DrawInspectorOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/TreeHeaderColumns.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawSplitter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistoryListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/MeasureMaxWidth.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/AssetOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistoryListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WebApi/ChangesetFromCollabCommitResponse.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/ProgressControlsForMigration.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/IncomingChangesNotifier.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTreeView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/NewIncomingChanges.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/Dialogs/GetRestorePathDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTab_Operations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetsListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/MetaPath.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/DrawProgressForDialogs.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/EnumExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DockEditorWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Avatar/AvatarImages.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/AssetMenuRoutingOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/SwitchModeConfirmationDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityEvents.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/DrawProgressForViews.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/DrawTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/DirectoryConflicts/DrawDirectoryResolutionPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/CheckinProgress.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityMenuItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/ProgressControlsForViews.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/TeamEdition/TeamEditionConfigurationWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/OverlayRect.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/VCSPlugin.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/ToolConfig.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/ListViewItemIds.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/AutoConfig.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/IncomingChangesNotifier.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WebApi/CurrentUserAdminCheckResponse.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/GenericProgress.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/PlasticSplitterGUILayout.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/LaunchDependenciesDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WebApi/IsCollabProjectMigratedResponse.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/HandleMenuItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/HelpFormat.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/DiffSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/ConfigurePartialWorkspace.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/BuildFormattedHelp.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WebApi/OrganizationCredentials.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistoryListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/UnityDiffTree.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/ChangeTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/LaunchDiffOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/DependenciesDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WebApi/CredentialsResponse.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingChangesSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UIElements/LoadingSpinner.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/DiffTreeView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AutoRefresh.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/StatusBar.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsCurrent.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CheckinConflictsDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistoryTab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityConstants.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/DrawHelpPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SSOSignUpPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/UpdateProgress.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/DownloadPlasticExeWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/MergeCategoryTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/GUIActionRunner.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityPlasticGuiMessage.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WebApi/WebRestApiClient.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/BoolSetting.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/LaunchCheckinConflictsDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetsSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/RunModal.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/FilesFilterPatternsMenuBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityPlasticTimer.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/ProjectWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/SortOrderComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Branch/BranchesTab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CollabPlugin.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/DrawTreeViewEmptyState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/GetChangesOverlayIcon.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/TabButton.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeCategoryTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Branch/BranchesListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/ParentWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/EditorProgressBar.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/MissingEncryptionPasswordPromptHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/WaitingSignInPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Welcome/GetInstallerTmpFileName.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UIElements/UIElementsExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/EditorDispatcher.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetsViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/SaveAction.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/OperationProgressData.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsResolved.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityThreadWaiter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityStyles.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetsTab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/CheckinProgress.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Welcome/WelcomeView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Message/DrawDialogIcon.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/WriteLogConfiguration.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CreatedOrganizationPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/SetupCloudProjectId.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/UpdateProgress.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorsListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticWindow/PlasticSCMWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/SSOCredentialsDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawActionHelpBox.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UIElements/ProgressControlsForDialogs.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/DrawProgressForMigration.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawSearchField.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/DiffPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Welcome/DownloadAndInstallOperation.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/DirectoryConflicts/ConflictResolutionState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/ProgressOperationHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WebApi/TokenExchangeResponse.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CheckinMergeNeededDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/UpdateReport/ErrorListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DropDownTextField.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/UnityIncomingChangesTree.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/UnityIncomingChangesTree.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/FindWorkspace.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/TestingHelpData.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/EditorVersion.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/ChangeCategoryTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Branch/BranchesSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/TreeHeaderSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/HelpData.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/GetPlasticShortcut.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/GUISpace.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Message/PlasticQuestionAlert.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawActionToolbar.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/ChangeTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Branch/BranchListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Tool/LaunchInstaller.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/ClientDiffTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/ValidRepositoryName.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/UnityPendingChangesTree.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/ResponseType.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/DateFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticNotification.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticMenuItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoriesListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Tool/BringWindowToFront.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/FindEditorWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SignInWithEmailPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CreateOrganizationPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CredentialsUIImpl.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Branch/BranchesListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Branch/BranchesViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/DrawIncomingChangesOverview.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportLineListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingChangesMultiColumnHeader.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/DrawCreateWorkspaceView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetsListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/DrawGuiModeSwitcher.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Tool/LaunchTool.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/ViewSwitcher.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawActionButton.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/EditorWindowFocus.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/ShowWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTreeView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/CooldownWindowDelayer.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SignInPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistoryListViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/EditorProgressControls.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingMergeLinks/MergeLinksListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Avatar/GetAvatar.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/FilterRulesConfirmationDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/TurnOffPlastic/TurnOffPlasticWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/ProgressControlsForDialogs.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTreeView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Welcome/MacOSConfigWorkaround.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/HelpLink.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawUserIcon.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/ConfirmContinueWithPendingChangesDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CredentialsDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Inspector/InspectorAssetSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoriesListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Tool/ToolConstants.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/DrawProgressForOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Tool/FindTool.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Branch/Dialogs/RenameBranchDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTreeHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/CreateRepositoryDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/FileSystemOperation.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Images.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/IIncomingChangesTab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryExplorerDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Tool/IsExeAvailable.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/HelpLinkData.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/EncryptionConfigurationDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorsListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/DiffTreeViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticPlugin.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/ChangeCategoryTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/EnumPopupSetting.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/HelpPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UnityConfigurationChecker.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceViewState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/DrawCommentTextArea.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTreeHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/OrganizationPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WorkspaceWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTreeHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/EmptyCheckinMessageDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticProjectSettingsProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticApp.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/GetRelativePath.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingChangesViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UIElements/TabView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/ChangeCategoryTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawSplitter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistoryListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/AssetOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistoryListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/NewIncomingChanges.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/Dialogs/GetRestorePathDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/MetaPath.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/EnumExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DockEditorWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/SwitchModeConfirmationDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/DrawProgressForViews.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/DrawTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityMenuItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/OverlayRect.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/ListViewItemIds.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WebApi/CurrentUserAdminCheckResponse.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/PlasticSplitterGUILayout.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/LaunchDependenciesDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/HelpFormat.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistoryListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/UnityDiffTree.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/DependenciesDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UIElements/LoadingSpinner.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/DiffTreeView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsCurrent.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CheckinConflictsDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/DrawHelpPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Diff/MergeCategoryTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityPlasticGuiMessage.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetsSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/RunModal.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/FilesFilterPatternsMenuBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CollabPlugin.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/DrawTreeViewEmptyState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/GetChangesOverlayIcon.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeCategoryTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/ParentWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/EditorProgressBar.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/MissingEncryptionPasswordPromptHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/WaitingSignInPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Welcome/GetInstallerTmpFileName.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetsViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/SaveAction.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsResolved.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UnityStyles.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetsTab.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/CheckinProgress.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Welcome/WelcomeView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/WriteLogConfiguration.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorsListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/SSOCredentialsDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawActionHelpBox.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/UIElements/ProgressControlsForDialogs.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Developer/DirectoryConflicts/ConflictResolutionState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WebApi/TokenExchangeResponse.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Gluon/UpdateReport/ErrorListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DropDownTextField.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/Gluon/UnityIncomingChangesTree.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/TestingHelpData.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Tree/TreeHeaderSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawActionToolbar.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Tool/LaunchInstaller.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/ValidRepositoryName.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/ResponseType.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/DateFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/PlasticNotification.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoriesListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SignInWithEmailPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CredentialsUIImpl.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Branch/BranchesListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/IncomingChanges/DrawIncomingChangesOverview.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportLineListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingChangesMultiColumnHeader.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/DrawCreateWorkspaceView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetsListHeaderState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/DrawGuiModeSwitcher.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/ViewSwitcher.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/DrawActionButton.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/EditorWindowFocus.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/ShowWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/CooldownWindowDelayer.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/History/HistoryListViewMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/EditorProgressControls.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/PendingMergeLinks/MergeLinksListView.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/ProgressControlsForDialogs.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/Changesets/ChangesetListViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/HelpLink.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/ConfirmContinueWithPendingChangesDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UI/Progress/DrawProgressForOperations.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Tool/FindTool.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryExplorerDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Help/HelpLinkData.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/EncryptionConfigurationDialog.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/PendingChanges/ChangeCategoryTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/UnityConfigurationChecker.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceViewState.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/OrganizationPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/WorkspaceWindow.cs" />
<None Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Assets/Styles/DownloadPlasticExeWindow.uss" />
<None Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Assets/Styles/WaitingSignInPanel.uss" />
<None Include="Library/PackageCache/com.unity.collab-proxy@1.15.13/Editor/PlasticSCM/Assets/Layouts/TabView.uxml" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -36,68 +36,68 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/Context.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/CameraState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Utilities/EditorMaterialQuality.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/DisplayWindow.EnvironmentLibrarySidePanel.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ShaderTypeGeneration.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/EnvironmentLibrary.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/DebugUIDrawer.Builtins.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/DebugUIDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/LookDevRenderer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/SpeedTree8MaterialUpgrader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ExpandedState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/SerializedDataParameter.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/LookDev.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/Drawers/IntParameterDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/CoreEditorUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/CoreEditorDrawers.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Gizmo/HierarchicalBox.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Lighting/CoreLightEditorUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/MaterialUpgrader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/DebugWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ShaderGeneratorMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Lighting/IESObject.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/DropArea.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Lighting/IESReader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Lighting/IESImporterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/Drawers/FloatParameterDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/RenderGraph/RenderGraphViewer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/PropertyFetcher.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/Drawers/Vector4ParameterDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/Stage.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ProjectorEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/Compositor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeComponentEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeComponentListEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/InspectorCurveEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Lighting/IESImporter.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/DisplayWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/QuaternionPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/DebugUIHandlerCanvasEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeProfileEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/ToolbarRadio.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/DisplayWindow.DebugSidePanel.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/Environment.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/DebugState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/FilterWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/UIFoldoutEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/ComparisonGizmoController.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Lighting/IESEngine.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/Drawers/ColorParameterDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Utilities/SerializedBitArray.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeProfileFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/CameraController.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeMenuItems.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ContextualMenuDispatcher.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/CSharpToHLSL.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeParameterDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/EditorPrefBoolFlags.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/CSharpToHLSL.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/ComparisonGizmoState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/CoreEditorStyles.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeComponentProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Gizmo/HierarchicalSphere.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/Context.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/CameraState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ShaderTypeGeneration.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/EnvironmentLibrary.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/DebugUIDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/LookDevRenderer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/SpeedTree8MaterialUpgrader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ExpandedState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/CoreEditorDrawers.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Gizmo/HierarchicalBox.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/MaterialUpgrader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/DebugWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Lighting/IESReader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/PropertyFetcher.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ProjectorEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/Compositor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/QuaternionPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/DebugUIHandlerCanvasEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/ToolbarRadio.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/DisplayWindow.DebugSidePanel.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/DebugState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/FilterWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Debugging/UIFoldoutEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/Drawers/ColorParameterDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeProfileFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/CameraController.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/Volume/VolumeMenuItems.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/EditorPrefBoolFlags.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/CameraEditorUtils.cs" />
<None Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/CubeToLatlong.shader" />
<None Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/LookDev/Compositor.shader" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;ENABLE_VR_MODULE;ENABLE_XR_MODULE;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;ENABLE_VR_MODULE;ENABLE_XR_MODULE;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -37,104 +37,104 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerVector2.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Volume/VolumeProfile.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/RTHandle.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Camera/FreeCamera.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/XRGraphics.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugUI.Panel.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/ResourceReloader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/CoreAttributes.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/ObservableList.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/LookDev/IDataProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/DepthBits.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerToggle.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/ShaderGenerator/ShaderGeneratorAttributes.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/CoreMatrixUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/CommonStructs.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Inputs/InputRegistering.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerWidget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/ColorUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugManager.Actions.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Volume/VolumeStack.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/IVirtualTexturingEnabledRenderPipeline.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerEnumField.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/ConstantBuffer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerContainer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerVBox.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerToggleHistory.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphResourcePool.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/CommandBufferPool.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphProfileId.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/DelegateUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/BufferedRTHandleSystem.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/RTHandleSystem.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/TextureXR.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerPersistentCanvas.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/SceneRenderPipeline.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Documentation.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerEnumHistory.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/CoreRenderPipelinePreferences.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/ComponentSingleton.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/TextureCurve.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/XRUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Camera/CameraSwitcher.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugShapes.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphResourceRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphLogger.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/HableCurve.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/ProfilingScope.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/ObjectPools.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Volume/VolumeProfile.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/XRGraphics.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/ResourceReloader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerVector3.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerIndirectToggle.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/ObservableList.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphObjectPool.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/XR/XRGraphicsAutomatedTests.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/MousePositionDebug.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Volume/VolumeParameter.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/BitArray.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/HaltonSequence.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/LookDev/IDataProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerUIntField.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerFloatField.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/DepthBits.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Volume/VolumeComponent.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerToggle.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/TileLayoutUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/UIFoldout.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/ShaderGenerator/ShaderGeneratorAttributes.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/CoreMatrixUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/CommonStructs.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/MaterialQuality.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/CoreUnsafeUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerValue.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/DynamicArray.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Inputs/InputRegistering.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerHBox.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerIntField.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerWidget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RendererList/RendererList.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerVector4.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/ColorUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerIndirectFloatField.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerBitField.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugManager.Actions.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Volume/VolumeStack.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugUpdater.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerCanvas.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphDefaultResources.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/IVirtualTexturingEnabledRenderPipeline.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerColor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerEnumField.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/ConstantBuffer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugManager.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerContainer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerRow.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/DynamicResolutionHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugUI.Containers.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerVBox.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerToggleHistory.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphResourcePool.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/CommandBufferPool.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphProfileId.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/CameraCaptureBridge.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/DelegateUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/BufferedRTHandleSystem.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Volume/VolumeManager.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/RTHandleSystem.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/TextureXR.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/RTHandles.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerPersistentCanvas.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphResources.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/SerializedDictionary.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Textures/MSAASamples.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/SceneRenderPipeline.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Documentation.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/CoreUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerEnumHistory.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerButton.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/CoreRenderPipelinePreferences.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/ComponentSingleton.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Volume/Volume.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/TextureCurve.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/ListBuffer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/XRUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Camera/CameraSwitcher.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/Prefabs/Scripts/DebugUIHandlerFoldout.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/GlobalDynamicResolutionSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugShapes.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphResourceRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/RenderGraph/RenderGraphLogger.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Utilities/HableCurve.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/ProfilingScope.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Debugging/DebugUI.Fields.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Common/ObjectPools.cs" />
<None Include="Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Runtime/Unity.RenderPipelines.Core.Runtime.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;ENABLE_XR_MODULE;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;ENABLE_XR_MODULE;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -36,131 +36,69 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Shapes/Polygon.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/RendererFeatures/ScreenSpaceAmbientOcclusionEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/Control.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Targets/UniversalUnlitSubTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/ParticlesSimpleLitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/UnlitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/CompositeShadowCaster2DEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalAdditionalCameraDataEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalRenderPipelineCameraEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/PathEditorToolExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/View/Drawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/FBXArnoldSurfaceMaterialDescriptionPreprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/View/IDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/EditablePathController.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/EditablePathUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/BakedLitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/ChannelMixerEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Renderer2DUpgrader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/RenderStateDataEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/PixelPerfectCameraEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/GenericScriptablePathInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/IEditablePath.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/DefaultControl.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/ISelectable.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/EditorUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/EditablePathExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/DepthOfFieldEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/ColorLookupEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/DepthOfFieldEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/RendererFeatures/NewRendererFeatureDropdownItem.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShadowCaster2DShapeTool.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/ShadingModels/SimpleLitGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalRenderPipelineAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/ShadowsMidtonesHighlightsEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/ISelection.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Shapes/Spline.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/AssetCallbacks/CreateSpriteLitShaderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalRenderPipelineMaterialUpgrader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/SortingLayerDropDown.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/GenericScriptablePath.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ScriptableRendererFeatureEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/GUIAction.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/PathComponentEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/AssetCallbacks/CreateLitShaderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/ScriptablePathInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/BezierUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/BaseShaderGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderPreprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Shapes/ShapeExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/GenericControl.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/AutodeskInteractiveMaterialImport.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/PathEditorTool.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/FBXMaterialDescriptionPreprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalRenderPipelineLightEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/ISelector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/SerializableSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/GUIState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/ScriptableData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/View/IEditablePathView.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/UniversalStructFields.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/LightExplorer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/DefaultScene/UniversalProjectSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/ParticlesLitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/ParticleGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/UniversalBlockFields.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/AssetCallbacks/CreateUnlitShaderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/SliderAction.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalAdditionalLightDataEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/ParticlesUnlitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/SimpleLitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/GenericDefaultControl.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Deprecated.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/IndexedSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Targets/UniversalSpriteUnlitSubTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/ModelPostProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/ColorCurvesEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/TonemappingEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/ISnapping.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/LitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ForwardRendererDataEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/UniversalFields.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShadowCaster2DEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/LiftGammaGainEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Targets/UniversalTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/PostProcessDataEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/SketchupMaterialDescriptionPostprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetVersion.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/TrackballUIDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/Snapping.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/PointRectSelector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/ThreeDSMaterialDescriptionPostprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Targets/UniversalSpriteLitSubTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/MaterialPostprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Shadow/ShadowCascadeSplitGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/EditablePath.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/MotionBlurEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/View/CreatePointAction.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/IEditablePathController.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/ClickAction.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/PhysicalMaterial3DsMaxPreprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/LayoutData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/ShadingModels/LitGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Shapes/IShape.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/MultipleEditablePathController.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Light2DEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/ScriptablePath.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalAnalytics.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/SavedParameter.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/BloomEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Renderer2DAnalytics.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Light2DEditorUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UpgradeCommon.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/ControlPoint.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/View/EditablePathView.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/RendererFeatures/RenderObjectsPassFeatureEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/IGUIState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/RectSelector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/UniversalStructs.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Renderer2DMenus.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/FilmGrainEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ScriptableRendererDataEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/ShadingModels/BakedLitGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Renderer2DDataEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/IUndoObject.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/AssetCallbacks/CreateSpriteUnlitShaderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/TerrainLitShaderGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/HoveredControlAction.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Targets/UniversalLitSubTarget.cs" />
@ -168,6 +106,68 @@
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/CommandAction.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/CinemachineUniversalPixelPerfectEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/ShadingModels/LitDetailGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Shapes/Polygon.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/RendererFeatures/ScreenSpaceAmbientOcclusionEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/Control.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Targets/UniversalUnlitSubTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/UnlitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalAdditionalCameraDataEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/EditablePathUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/BakedLitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/ChannelMixerEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Renderer2DUpgrader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/PixelPerfectCameraEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/GenericScriptablePathInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/DefaultControl.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/ISelectable.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShadowCaster2DShapeTool.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/ShadingModels/SimpleLitGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalRenderPipelineAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/ShadowsMidtonesHighlightsEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Shapes/Spline.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/AssetCallbacks/CreateSpriteLitShaderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalRenderPipelineMaterialUpgrader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/SortingLayerDropDown.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/GenericScriptablePath.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ScriptableRendererFeatureEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/AssetCallbacks/CreateLitShaderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/ScriptablePathInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/BezierUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderPreprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/GenericControl.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/ISelector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/View/IEditablePathView.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/DefaultScene/UniversalProjectSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/ParticleGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/UniversalBlockFields.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/AssetCallbacks/CreateUnlitShaderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/ParticlesUnlitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/GenericDefaultControl.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Deprecated.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Targets/UniversalSpriteUnlitSubTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/ModelPostProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/TonemappingEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGUI/Shaders/LitShader.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/UniversalFields.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/LiftGammaGainEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Targets/UniversalTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/ThreeDSMaterialDescriptionPostprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/PointRectSelector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Targets/UniversalSpriteLitSubTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/AssetPostProcessors/MaterialPostprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/ClickAction.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/LayoutData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Light2DEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditorTool/ScriptablePath.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/UniversalAnalytics.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/ControlPoint.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/GUIFramework/IGUIState.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/Selection/RectSelector.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Renderer2DMenus.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/FilmGrainEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/Renderer2DDataEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/2D/ShapeEditor/EditablePath/IUndoObject.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/AssetCallbacks/CreateSpriteUnlitShaderGraph.cs" />
<None Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/ShaderGraph/Includes/Varyings.hlsl" />
<None Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/RendererFeatures/NewRendererFeature.cs.txt" />
<None Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Editor/Overrides/Shaders/ShadowsMidtonesHighlightsCurves.shader" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;ENABLE_VR_MODULE;ENABLE_XR_MODULE;USING_ANIMATION_MODULE;USING_PHYSICS2D_MODULE;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;ENABLE_VR_MODULE;ENABLE_XR_MODULE;USING_ANIMATION_MODULE;USING_PHYSICS2D_MODULE;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -38,112 +38,112 @@
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Shadows/ShadowUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/XR/XRLayout.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/Tonemapping.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRenderer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Passes/Utility/Light2DLookupTexture.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/DeferredPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/RendererFeatures/ScreenSpaceAmbientOcclusion.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/DepthOfField.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/DeferredTiler.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/UniversalRenderPipelineCore.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ChannelMixer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/ColorGradingLutPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Shadows/CompositeShadowCaster2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/WhiteBalance.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/DeferredLights.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Passes/PixelPerfectBackgroundPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Passes/IRenderPass2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/RendererFeatures/RenderObjects.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/XROcclusionMeshPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ColorCurves.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Passes/IRenderPass2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2DPoint.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/PriorityQueue.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ForwardLights.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2DManager.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/CapturePass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Passes/Utility/RendererLighting.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/DeferredShaderData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/PixelPerfectCamera.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/SplitToning.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ColorLookup.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/DrawSkyboxPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/RenderTargetHandle.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Renderer2DDataAuthoring.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2DCullResult.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Data/XRSystemData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/SampleCount.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/GBufferPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/CopyDepthPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Data/RenderStateData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/ScriptableRenderPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/SceneViewDrawMode.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Shadows/ShadowCaster2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/XR/XRPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ShadowUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/Tess.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/UniversalAdditionalCameraData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/Dict.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/FinalBlitPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Data/UniversalRenderPipelineAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/DepthOnlyPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ColorAdjustments.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/TileDepthRangePass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Shadows/ShadowCasterGroup2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ComponentUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/RenderObjectsPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ShadowsMidtonesHighlights.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/StencilUsage.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/MotionBlur.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/Bloom.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ChromaticAberration.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Deprecated.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/LensDistortion.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Renderer2DData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Shadows/ShadowRendering.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2DAuthoring.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/Vignette.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Data/UniversalRenderPipelineEditorResources.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Renderer2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/XR/XRSystem.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/Tonemapping.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRenderer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Passes/Utility/Light2DLookupTexture.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/DeferredTiler.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/UniversalRenderPipelineCore.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ChannelMixer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/ColorGradingLutPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/XROcclusionMeshPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ColorCurves.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/PriorityQueue.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/CapturePass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Passes/Utility/RendererLighting.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/PixelPerfectCamera.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/RenderTargetHandle.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2DCullResult.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/LightUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererFeature.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ScriptableRendererData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/PostProcessPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2DBlendStyle.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/LiftGammaGain.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/RenderingUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/MeshUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2DStub.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/ScriptableRenderPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/Mesh.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/SceneViewDrawMode.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Shadows/ShadowCaster2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/XR/XRPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ShadowUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/InvokeOnRenderObjectCallbackPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/Tess.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/UniversalAdditionalCameraData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/MainLightShadowCasterPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/FilmGrain.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/Dict.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/DepthNormalOnlyPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ForwardRenderer.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ShaderData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/DrawObjectsPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/FinalBlitPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/UniversalRenderPipeline.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Data/UniversalRenderPipelineAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/DepthOnlyPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Shadows/ShadowCasterGroup2DManager.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Passes/Render2DLightingPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/AdditionalLightsShadowCasterPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ColorAdjustments.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/TileDepthRangePass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Shadows/ShadowCasterGroup2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ComponentUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/RenderObjectsPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/PriorityHeap.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/PixelPerfectCameraInternal.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Data/PostProcessData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2DShape.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/TransparentSettingsPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/UniversalAdditionalLightData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ShadowsMidtonesHighlights.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/StencilUsage.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/MotionBlur.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ShaderUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/Bloom.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/PaniniProjection.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/ChromaticAberration.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/Geom.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Deprecated.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/LensDistortion.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Renderer2DData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/ScreenSpaceShadowResolvePass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/Sweep.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/CinemachineUniversalPixelPerfect.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/CopyColorPass.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/ForwardRendererData.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Shadows/ShadowRendering.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Light2DAuthoring.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/RendererFeatures/DisallowMultipleRendererFeature.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Overrides/Vignette.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Data/UniversalRenderPipelineEditorResources.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Passes/SceneViewDepthCopy.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/2D/Renderer2D.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/XR/XRSystem.cs" />
<Compile Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/PostProcessUtils.cs" />
<None Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/Unity.RenderPipelines.Universal.Runtime.asmdef" />
<None Include="Library/PackageCache/com.unity.render-pipelines.universal@10.8.1/Runtime/External/LibTessDotNet/LICENSE.txt" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -38,36 +38,36 @@
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/EditorPluginInterop.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/UnitTesting/TestEvent.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Discovery.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/UnitTesting/TestsCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/GUIDProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/UnitTesting/CallbackInitializer.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Util/SerializableVersion.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/IGUIDGenerator.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/RiderFileSystemWatcher.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Util/LibcNativeInterop.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/UnitTesting/SyncTestRunEventsHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/UnitTesting/CallbackData.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/RiderScriptEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/ProjectGeneration.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/FileIOProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/SolutionGuidGenerator.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/IAssemblyNameProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/IGenerator.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/UnitTesting/RiderTestRunner.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Util/RiderMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/RiderScriptEditorData.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/UnitTesting/SyncTestRunCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/ProjectGenerationFlag.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Util/CommandLineParser.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/LoggingLevel.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/PluginSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Properties/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/PostProcessors/RiderAssetPostprocessor.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/RiderInitializer.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Util/FileSystemUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/AssemblyNameProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/IFileIO.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Discovery.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/UnitTesting/CallbackInitializer.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Util/SerializableVersion.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/IGUIDGenerator.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/ProjectGeneration.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/ProjectGeneration/IAssemblyNameProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Util/RiderMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/LoggingLevel.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/PluginSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/PostProcessors/RiderAssetPostprocessor.cs" />
<None Include="Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/com.unity.ide.rider.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -36,15 +36,15 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherItem.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/Searcher.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherDatabaseBase.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherDatabase.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherControl.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherHighlighter.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherItem.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherDatabaseBase.cs" />
<Compile Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Searcher/SearcherDatabase.cs" />
<None Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Unity.Searcher.Editor.asmdef" />
<None Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Resources/SearcherItem.uxml" />
<None Include="Library/PackageCache/com.unity.searcher@4.3.2/Editor/Resources/SearcherWindow.uxml" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -36,72 +36,72 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/IHttpClient.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/IServiceFlagRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/ExceptionVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/ServiceActivationPopupVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/ProjectStateRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/ServiceFlagRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UserRoleManagement/IUserRoleHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/HttpRequestExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/HttpServiceConfig.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/ServiceFlagEndpoint.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AsyncOperation/IAsyncOperation.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/ProjectBindVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/IProjectStateRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AsyncOperation/AsyncOperation.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/InsufficientPermissionVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/EditorGameServiceRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/ExceptionHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/ReadOnlyHttpRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UserRoleManagement/IUserRoleRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/ReadOnlyHttpResponse.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/ProjectStateHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/ServiceInstallationListener.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AsyncOperation/AsyncOperationAwaiter.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/EditorGameServiceFlagEnabler.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/IProjectEditorDrawerFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AsyncOperation/AsyncOperationStatus.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/IEditorGameServiceEnabler.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/VisualElementHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/BackendHelpers/JsonHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/IProjectStateHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/UserRequestVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UserRoleManagement/UserRole.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/SettingsCommonHeaderUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/ServiceFlags.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/SliderToggleUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/EditorGameServiceSettingsProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/IEditorGameServiceIdentifier.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/IEditorGameService.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/LoggedOutUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Utils/MiniJson.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/IServiceFlags.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/Analytics/EditorGameServiceAnalyticsSender.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/ProjectState.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/PlatformSupportUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/HttpRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/IHttpClient.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/IServiceFlagRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/ExceptionVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UserRoleManagement/IUserRoleHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/ServiceFlagEndpoint.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/IProjectStateRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AsyncOperation/AsyncOperation.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/ExceptionHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UserRoleManagement/IUserRoleRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AsyncOperation/AsyncOperationAwaiter.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AsyncOperation/AsyncOperationStatus.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/IEditorGameServiceEnabler.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/ServiceActivationPopupWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AsyncOperation/AsyncOperationExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UserRoleManagement/UserRoleHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/IProjectStateHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/OfflineUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/UserRequestVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/HttpResponse.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UserRoleManagement/UserRole.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/SettingsCommonHeaderUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/ProjectBindAndUserRequestVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/LoggedOutVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/ServiceFlags.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/SliderToggleUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/DefaultCdnConfiguredEndpoint.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/EditorGameServiceSettingsProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/AccessTokenErrorUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/EditorGameServiceDashboardHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/IEditorGameServiceIdentifier.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AsyncOperation/IAsyncOperationAwaiter.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/IEditorGameService.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/LoggedOutUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/UnityWebRequestClient.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Utils/MiniJson.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/UserRoleRequestUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UserRoleManagement/UserRoleRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/IEditorGameServiceRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/IServiceFlags.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/Analytics/EditorGameServiceAnalyticsSender.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/BackendHelpers/UnityWebRequestHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ProjectStateManagement/ProjectState.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/IActivationPopupVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/ServiceActivationConfirmationVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/CoppaVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/HttpOptions.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/PlatformSupportUiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/ServiceActivationPopup/Visuals/OfflineVisual.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/Networking/HttpRequest.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/EditorGameService/EditorGameServiceRemoteConfiguration.cs" />
<None Include="Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/UXML/ExceptionVisual.uxml" />
@ -375,6 +375,9 @@
<Reference Include="log4netPlastic">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.collab-proxy@1.15.13/Lib/Editor/PlasticSCM/log4netPlastic.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.NRefactory">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ICSharpCode.NRefactory.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll</HintPath>
</Reference>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -37,284 +37,144 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/LengthNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/RejectionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/DrawState.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleTexture2DNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix2ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/IdentifierControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderGraphImporterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture2DShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/IHasMetaData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/FlipbookNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/ObjectPool.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/ShaderGraphPreferences.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ShaderGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Mask/ColorMaskNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/PowerNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Colors/CustomColorData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleTexture3DNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/ShaderValueType.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Shape/RoundedPolygonNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/PooledObject.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/Vector1Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Blackboard/SGBlackboardSection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix3MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Manipulators/ElementResizer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ColorShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/TilingAndOffsetNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/AbstractMaterialNodePropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/NormalMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/LightmappingShaderProperties.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Matrix/MatrixDeterminantNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/ParallaxMappingNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ResizableElement.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/Edge0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/ShaderGraphAnalytics.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/ParallaxMappingNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/WindowDockingLayout.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderSubGraphMetadata.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/ICanChangeShaderGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Derivative/DDYNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/PropertyUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Implementation/GraphObject.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/GraphDrawingData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/TextureSamplerState.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/WhiteBalanceNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/Vector2Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireNormal.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/BlockNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Matrix/MatrixSplitNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/GraphEditorView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/ShaderStage.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Blackboard/BlackboardFieldView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/TypeMapper.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/ILegacyTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/NormalDropOffSpace.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/BitangentVectorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Blackboard/SGBlackboard.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/GradientSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/PassCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/MessageManager.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/SerializationHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/RotateAboutAxisNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/InvertColorsNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/Platform.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Implementation/Edge.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/NormalVectorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ShaderInput.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Mask/ChannelMaskNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/PropertyRow.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/SquareRootNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Interpolation/SmoothstepNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Mesh Deformation/LinearBlendSkinningNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/RenderStateDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/CustomFunctionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture2DArrayMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector2ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/FunctionMultiInput.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Shape/PolygonNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Round/FloorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/DefaultControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/Identifier.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalFromHeightNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Implementation/IHasDependencies.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/PropertyCollector.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/GroupData0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/KeywordDefinition.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleTexture2DArrayNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/HlslFunctionView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/IPropertyFromNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/SubShaderDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/SubGraphNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/IPropertyFromNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/ListPool.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/SliderControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/INodeModificationListener.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SamplerStateNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IGeneratesBodyCode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/VectorShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/FormerNameAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Wave/SawtoothWaveNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/Cull.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix3ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/MaterialGraphView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleVirtualTextureNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/BlendOp.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Target.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Interface/IShaderString.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/PooledHashSet.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Round/CeilingNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/ToggleDataPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/RenderType.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/RedirectNodeView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GradientMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/TextUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/TextureControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/VirtualTextureShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/PropertyNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireTime.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/PBR/MetalReflectanceNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/PassDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/PropertyType.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/ArccosineNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/Texture3DAssetNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Noise/VoronoiNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Contexts/TargetSetupContext.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/RefDataEnumerable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/Texture3DAssetNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/DependencyCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireCameraOpaqueTexture.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/DotProductNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalUnpackNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/FakeJsonObject.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/HelpBoxRow.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/DynamicValueMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/AssetCallbacks/CreateShaderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireFaceSign.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix4MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector4ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Shape/RoundedRectangleNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ButtonControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/BooleanNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireScreenPosition.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/RadialShearNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/MinimalGraphData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/IsInfiniteNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/GradientControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GraphDataUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Scene/FogNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/InspectorView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/StickyNoteData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Contexts/TargetFieldContext.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/Vector2PropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/CosineNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/DistanceNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Derivative/DDXYNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/CubemapPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/PropertySheet.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/MatrixNames.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/RenderQueue.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Matrix/Matrix4Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/AssetCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Channel/SwizzleNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/FieldCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/RemapNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Shape/RectangleNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/DegreesToRadiansNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Channel/SwizzleNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Attributes/SGPropertyDrawerAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/BooleanShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/GuidEncoder.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderSubGraphImporter.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Manipulators/ResizeSideHandle.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/CubemapMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/CreateSerializableGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/ValueUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/TargetResources/BlockFields.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/IOnAssetEnabled.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/KeywordNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableMesh.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/SlotReference.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ShaderKeyword.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/KeywordCollector.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/Vector3Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/Texture2DArrayAssetNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/PosterizeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IGroupItem.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/GeometryNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/HyperbolicSineNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Interpolation/InverseLerpNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/TriplanarNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/EnumPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/FieldDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/IncludeDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/Documentation.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Matrix/Matrix2Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/BlockFieldDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Derivative/DDXNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/DropdownPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Manipulators/Scrollable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/PreviewProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/ZTest.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/PreviewProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/PolarCoordinatesNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/PreviewManager.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/NodeClassCache.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/JsonObject.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector2MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/IntegerNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ReorderableSlotListView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector3MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/ShaderInputPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/TangentVectorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Implementation/HasDependenciesAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableTextureArray.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Mesh Deformation/ComputeDeformNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/PragmaCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/MaximumNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Mesh Deformation/ComputeDeformNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GraphSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/DictionaryPool.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/RedirectNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/VisualEffectMasterNode1.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/BooleanMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/ShaderGUI/PBRMasterGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/TargetResources/Fields.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalReconstructZNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/DefaultShaderIncludes.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/ReciprocalNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/DefaultShaderIncludes.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalReconstructZNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/AbstractShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/Texture3DControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderSubGraphImporterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/SaturateNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/IndexSet.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/ModuloNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/FloatPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/UVSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/OneMinusNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/TypeMapping.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Enumerations/Precision.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Utility/ColorspaceConversion.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Manipulators/Draggable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/VirtualTextureMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/IMaterialSlotHasValue.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Data/FieldCondition.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/UVNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/IdentifierField.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireVertexColor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/IncludeLocation.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Lighting/AmbientNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Extensions/StencilExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/HueNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/FunctionRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/CubemapAssetNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/SineNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/MultiplyNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawerUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/ProjectionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/PopupControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Gradient/BlackbodyNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/LabelSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Attributes/SRPFilterAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GradientShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/Texture2DPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/PooledList.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/VertexColorMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/IShaderNodeView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/AbstractMaterialNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequirePosition.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/SaturationNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Channel/FlipNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/IsFrontFaceNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Noise/GradientNoiseNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Blend/BlendMode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/CustomFunctionNodePropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/SubGraphOutputNodePropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ParentGroupChange.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/CubemapShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Scene/ScreenNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/SearchWindowAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/TexelSizeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Noise/SimpleNoiseNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/DefineCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/TargetResources/FieldDependencies.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/OrNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/CopyPasteGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/Texture3DPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Scene/SceneDepthNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/GraphUtil.cs" />
@ -323,305 +183,445 @@
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/SearchWindowProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/UnlitMasterNode1.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Contexts/TargetPropertyGUIContext.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/FresnelEffectNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/ColorRGBSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Wave/SquareWaveNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/SampleVirtualTextureNodePropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/FileUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireVertexSkinning.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableGuid.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/IncludeCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/CrossProductNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Attributes/GenerateBlocksAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Scene/SceneColorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Utils/TargetUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IGeneratesFunction.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Scene/ObjectNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/StructFieldOptions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/TextControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/PrecisionUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/NormalizeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/ScreenSpaceType.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/KeywordDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/ShaderGraphRequirementsPerKeyword.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GraphConcretization.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderGraphMetadata.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/SlotValue.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableCubemap.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/BranchNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/DielectricSpecularControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Manipulators/ResizeBorderFrame.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/FractionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Attributes/InspectableAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/RandomRangeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/SubtractNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GraphData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Lighting/ReflectionProbeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Wave/TriangleWaveNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Round/StepNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Lighting/BakedGINode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/HyperbolicCosineNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/PortInputView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Colors/CategoryColors.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ChannelMixerControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Round/TruncateNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ChannelEnumControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/CubemapSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ColorMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Matrix/Matrix3Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/MatrixPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/JsonRef.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/CubemapInputMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/PBR/DielectricSpecularNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/VertexColorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Blend/BlendNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/ScreenPositionSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IInspectable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/RenderStateCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Targets/PreviewTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/MaterialGraphEditWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/CheckerboardNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/AllNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/FloatField.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/QueuePool.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/ScreenPositionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/ComparisonNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/OutputMetadata.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/LegacyUnknownTypeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireBitangent.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Matrix/TransformationMatrixNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/GraphCode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/ZWrite.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/RadiansToDegreesNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Matrix/MatrixConstructionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GradientInputMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/TabbedView/TabButton.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/SubTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Channel/SplitNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/MinimumNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/InstancingOptions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/NormalMapSpace.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/TargetResources/StructFields.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ReorderableTextListView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/ShaderStringBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/ShaderModel.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/ShaderGraphVfxAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ColorControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Shape/EllipseNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ToggleControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/BooleanSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/TwirlNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ContextView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/Blend.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/MasterPreviewView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/RefValueEnumerable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/KeywordScope.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Matrix/MatrixTransposeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/IntegerControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/PBRMasterNode1.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalStrengthNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireViewDirection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/TextureStackNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/ClampNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/GenerationMode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/Vector3PropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/Vector4PropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderGraphImporter.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalBlendNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/TransformNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Colors/IColorProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/AssetCallbacks/CreateShaderSubGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/PreviewMode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/ColorPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/IMaterialGraphAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireDepthTexture.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GroupData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/ProceduralVirtualTextureNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Interfaces/IResizable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/SpherizeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ViewDirectionMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/CodeFunctionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/PositionMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Gradient/SampleGradientNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Contexts/TargetActiveBlockContext.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ColorRGBMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/AddNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/Vector4Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/ActiveFields.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/TitleAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/TextureArraySlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/ListUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/EdgeConnectorListener.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/SubGraph/SubGraphAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/UIUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/KeywordType.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/MultiJsonInternal.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SpaceMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/KeywordCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/TangentNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/TimeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix4ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Blackboard/BlackboardProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleTexture2DLODNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/MultiJson.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/TextureSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/ParallaxOcclusionMappingNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/StickyNote.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/IControlAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Manipulators/WindowDraggable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/ShaderGeneratorNames.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Attributes/ContextFilterableAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/StackPool.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/MaterialGraphPreviewGenerator.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/HyperbolicTangentNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/KeywordDependentCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/ArctangentNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/AbstractMaterialGraphAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Channel/CombineNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/GradientUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/JsonData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Blackboard/BlackboardInputInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/KeywordUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Extensions/FieldExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/IEdge.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/MultiJsonEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/GradientEdge.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector1ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ShaderPort.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/IMasterNode1.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Targets/VFXTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/AbsoluteNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector3ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Data/ConditionalField.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/ReplaceColorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/DivideNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/SphereMaskNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/CubemapControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/GraphDataPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/INode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/ShaderInput0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableVirtualTexture.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/NodeSettingsView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SamplerStateShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/RejectionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/DrawState.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/IdentifierControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderGraphImporterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/IHasMetaData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/FlipbookNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/ObjectPool.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/ShaderGraphPreferences.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/PowerNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleTexture3DNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/PooledObject.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix3MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ColorShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/AbstractMaterialNodePropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/LightmappingShaderProperties.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Matrix/MatrixDeterminantNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/Edge0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/ShaderGraphAnalytics.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Derivative/DDYNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/GraphDrawingData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/WhiteBalanceNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/Vector2Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireNormal.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/BlockNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/ShaderStage.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/ILegacyTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/NormalDropOffSpace.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/BitangentVectorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Blackboard/SGBlackboard.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/GradientSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/PassCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/MessageManager.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/Platform.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Implementation/Edge.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/NormalVectorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Mask/ChannelMaskNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/PropertyRow.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/SquareRootNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Interpolation/SmoothstepNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Mesh Deformation/LinearBlendSkinningNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/RenderStateDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/CustomFunctionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/FunctionMultiInput.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Shape/PolygonNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/DefaultControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/Identifier.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/GroupData0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/HlslFunctionView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/SliderControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/INodeModificationListener.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IGeneratesBodyCode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Wave/SawtoothWaveNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/FormerNameAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix3ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/MaterialGraphView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleVirtualTextureNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Target.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GradientMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/TextUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/TextureControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireTime.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/PBR/MetalReflectanceNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/PropertyType.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/RefDataEnumerable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Contexts/TargetSetupContext.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireCameraOpaqueTexture.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/DotProductNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalUnpackNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireFaceSign.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix4MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ButtonControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Shape/RoundedRectangleNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/BooleanNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/RadialShearNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/GradientControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GraphDataUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Contexts/TargetFieldContext.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/Vector2PropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/DistanceNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Derivative/DDXYNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/PropertySheet.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Matrix/Matrix4Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/AssetCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Shape/RectangleNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/DegreesToRadiansNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/BooleanShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/GuidEncoder.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderSubGraphImporter.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/CreateSerializableGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/ValueUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/IOnAssetEnabled.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/KeywordNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/KeywordCollector.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/Vector3Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/Texture2DArrayAssetNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/GeometryNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/HyperbolicSineNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Interpolation/InverseLerpNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/TriplanarNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Derivative/DDXNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/DropdownPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Manipulators/Scrollable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/JsonObject.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector2MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ReorderableSlotListView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector3MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/ShaderInputPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/TangentVectorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Implementation/HasDependenciesAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableTextureArray.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/MaximumNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/VisualEffectMasterNode1.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/BooleanMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/ShaderGUI/PBRMasterGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/TargetResources/Fields.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/SaturateNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/FloatPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Enumerations/Precision.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/TypeMapping.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/IMaterialSlotHasValue.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Data/FieldCondition.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Lighting/AmbientNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/CubemapAssetNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/MultiplyNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawerUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/PopupControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/LabelSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Attributes/SRPFilterAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GradientShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/PooledList.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/IShaderNodeView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Channel/FlipNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/SaturationNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/CustomFunctionNodePropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Scene/ScreenNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/SearchWindowAdapter.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ParentGroupChange.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/TexelSizeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/OrNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/CopyPasteGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/FresnelEffectNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/ColorRGBSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Wave/SquareWaveNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/FileUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireVertexSkinning.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableGuid.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/CrossProductNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Scene/SceneColorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/StructFieldOptions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/ScreenSpaceType.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/ShaderGraphRequirementsPerKeyword.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GraphConcretization.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableCubemap.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/RandomRangeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Round/StepNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/PortInputView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ChannelMixerControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Round/TruncateNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/CubemapSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ColorMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Matrix/Matrix3Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/MatrixPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/CubemapInputMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/PBR/DielectricSpecularNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/ScreenPositionSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IInspectable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Targets/PreviewTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/Texture3DSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleCubemapNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/PreviewNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableTexture.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/ScreenPositionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/ComparisonNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/MatrixShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/OutputMetadata.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Implementation/SlotType.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/TextureArrayControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/GradientPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/LegacyUnknownTypeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ObjectControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Colors/NoColors.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Colors/ColorManager.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Attributes/BuiltinKeywordAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/NotNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireBitangent.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/StructCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture3DInputMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/SubGraph/SubGraphOutputNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Matrix/TransformationMatrixNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/GraphCode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireVertexID.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/PreviewSceneResources.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/ZWrite.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GraphValidation.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/RadiansToDegreesNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireTangent.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Matrix/MatrixConstructionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GradientInputMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/TabbedView/TabButton.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/SubTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture3DMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/Logging.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/BoolPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Channel/SplitNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/MinimumNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/InstancingOptions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/Logging.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderGraphAssetPostProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/NormalMapSpace.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/TargetResources/StructFields.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ReorderableTextListView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/SlotValueTypeUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/ShaderStringBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/ShaderModel.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/DynamicVectorMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/ShaderSpliceUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/ShaderGraphVfxAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Interpolation/LerpNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Procedural/Shape/EllipseNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ToggleControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/BooleanSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ColorControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/TwirlNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ContextView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/MasterPreviewView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/RefValueEnumerable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/Blend.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/ContextData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/KeywordScope.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Matrix/MatrixTransposeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/IntegerControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireViewDirection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/PBRMasterNode1.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalStrengthNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalFromTextureNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Round/RoundNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/TextureStackNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/VirtualTextureInputMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Range/ClampNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/Texture2DAssetNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/GenerationUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/GenerationMode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/ChannelMixerNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/Vector3PropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/StructDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/PositionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/Vector4PropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix2MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Importers/ShaderGraphImporter.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Normal/NormalBlendNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/TransformNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Colors/IColorProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/Arctangent2Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/AssetCallbacks/CreateShaderSubGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/PreviewMode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/NandNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Attributes/NeverAllowedByTargetAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/SlotReference0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/ColorPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/IMaterialGraphAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireDepthTexture.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/GroupData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector1MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/PragmaDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleRawCubemapNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/ProceduralVirtualTextureNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Interfaces/IResizable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/SpherizeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Descriptors/PragmaDescriptor.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/SpriteUnlitMasterNode1.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ViewDirectionMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture3DShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/CodeFunctionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/PositionMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Data/FieldDependency.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/IShaderPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Gradient/SampleGradientNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/ColorSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/ExponentialNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Contexts/TargetActiveBlockContext.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Colors/PrecisionColors.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ColorRGBMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/TabbedView/TabbedView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/UVMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SamplerStateMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Round/SignNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SamplerStateMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Controls.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/AddNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/SerializationExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/MaterialNodeView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ShaderGraphRequirements.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Data/KeywordEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ShaderGraphRequirements.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/IMayRequireMeshUV.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/Vector4Node.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/ActiveFields.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/SerializableGuid.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/TitleAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/TextureArraySlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/ReciprocalSquareRootNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/DynamicMatrixMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Geometry/ViewDirectionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/ListUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/EdgeConnectorListener.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/NeededCoordinateSpace.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/IsNanNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/SubGraph/SubGraphAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/BitangentMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/UIUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Enumerations/KeywordType.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/MultiJsonInternal.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/ReflectionNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SpaceMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/GraphCompilationResult.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Implementation/NodeUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector4MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Interfaces/IRectInterface.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Collections/KeywordCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/TangentNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/NegateNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/VectorControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/TimeNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Matrix4ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Blackboard/BlackboardProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Texture/SampleTexture2DLODNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/MaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/ConstantNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/MultiJson.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/TextureSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/TargetResources/Structs.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture2DArrayShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/TextPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/Generator.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/ParallaxOcclusionMappingNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/IControlAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/StickyNote.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/GraphData0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/AnyNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Manipulators/WindowDraggable.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/SpriteLitMasterNode1.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/IntegerPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Processors/ShaderGeneratorNames.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Attributes/ContextFilterableAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/StackPool.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/MaterialGraphPreviewGenerator.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/ArcsineNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/UV/RotateNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/HyperbolicTangentNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/Slots/MultiFloatSlotControlView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/EnumConversionControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/KeywordDependentCollection.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/RedirectNodeData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/PropertyNodeView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Trigonometry/ArctangentNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Wave/NoiseSineWaveNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/AbstractMaterialGraphAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/ChannelEnumMaskControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Interface/IConditional.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Channel/CombineNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/Texture2DArrayPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Gradient/GradientNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/GradientUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/JsonData.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Blackboard/BlackboardInputInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Util/CompatibilityExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/IndexSetPool.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/KeywordUtil.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/LogNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Extensions/FieldExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/IEdge.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/ContrastNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Extensions/IConditionalExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Serialization/MultiJsonEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/AssetCallbacks/CreateVFXShaderGraph.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/GradientEdge.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector1ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/TangentMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Filter/DitherNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/ShaderPort.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture2DArrayInputMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/IMasterNode1.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Targets/VFXTarget.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Vector3ShaderProperty.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Generation/Data/ConditionalField.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Advanced/AbsoluteNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/ScreenPositionMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Artistic/Adjustment/ReplaceColorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture2DMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Basic/DivideNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Math/Vector/SphereMaskNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Util/UvChannel.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/CubemapControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Colors/UserColors.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/AbstractMaterialNode0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Inspector/PropertyDrawers/GraphDataPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Interfaces/Graph/INode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/SliderNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Controls/EnumControl.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/GraphSubWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture2DInputMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/StickyNoteData0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Legacy/ShaderInput0.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SerializableVirtualTexture.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/Texture2DInputMaterialSlot.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Utility/Logic/AndNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Drawing/Views/NodeSettingsView.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Nodes/Input/Basic/ColorNode.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Data/Graphs/SamplerStateShaderProperty.cs" />
<None Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Resources/Shaders/BlitNoAlpha.shader" />
<None Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Resources/Styles/TabbedView.uss" />
<None Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Resources/Styles/Controls/IntegerControlView.uss" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -36,10 +36,10 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Utilities/EnumInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Utilities/GenerationAPIAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Utilities/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Utilities/StringBuilderExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Utilities/EnumInfo.cs" />
<None Include="Library/PackageCache/com.unity.shadergraph@10.8.1/Editor/Utilities/Unity.ShaderGraph.Utilities.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -39,51 +39,51 @@
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PackageUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/DropdownOptionListDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphMetricsPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorPanelUI.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_UIStyleManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BaseShaderGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_StyleAssetMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_CharacterPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ProjectTextSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BitmapShaderGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_EditorShaderUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SubMeshUI_Editor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorCoroutine.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetImporter.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteCharacterPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphInfoDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_FontAsset_CreationMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SettingsEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteGlyphPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TextContainerEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ColorGradientEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SerializedPropertyHolder.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_TextAlignmentDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TexturePostProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PostBuildProcessHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_SortingLayerHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_StyleSheetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_GlyphPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_FontAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_MeshRendererEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PreBuildProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_ContextMenus.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ResourcesLoader.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_InputFieldEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BaseEditorPanel.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ColorGradientAssetMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_FontPlugin.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_CreateObjectMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SubMesh_Editor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphMetricsPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorPanelUI.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BaseShaderGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_CharacterPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_EditorShaderUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetImporter.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphInfoDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SettingsEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteGlyphPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TextContainerEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TexturePostProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_GlyphPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_FontAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_MeshRendererEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PreBuildProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_ContextMenus.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ResourcesLoader.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphRectPropertyDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_DropdownEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SDFShaderGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SubMesh_Editor.cs" />
<None Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/Unity.TextMeshPro.Editor.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>
@ -334,6 +334,9 @@
<Reference Include="log4netPlastic">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.collab-proxy@1.15.13/Lib/Editor/PlasticSCM/log4netPlastic.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.NRefactory">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ICSharpCode.NRefactory.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll</HintPath>
</Reference>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -36,65 +36,65 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_InputField.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextProcessingStack.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteGlyph.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/ITextPreProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_MeshUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_CharacterInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_StyleSheet.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_ExtensionMethods.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteCharacter.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAssetUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_UGUI_Private.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_MaterialManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Style.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Dropdown.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextMeshProUGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ListPool.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Text.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_EditorResourceManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextElement.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_CoroutineTween.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SelectionCaret.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteAnimator.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_MeshInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ObjectPool.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_UpdateRegistery.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ResourcesManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SubMesh.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_InputValidator.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Asset.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_LineInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextContainer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/FastAction.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAssetCommon.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextMeshPro.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Sprite.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Compatibility.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_RichTextTagsCommon.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextParsingUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_PackageResourceImporter.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ColorGradient.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Settings.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_DefaultControls.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_EventManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SubMeshUI.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_UpdateManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_Private.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ShaderUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Character.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextElement_Legacy.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/MaterialReferenceManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_InputField.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_ExtensionMethods.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteCharacter.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_MaterialManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Style.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextMeshProUGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ListPool.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_EditorResourceManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextElement.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_CoroutineTween.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_MeshInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ObjectPool.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_UpdateRegistery.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ResourcesManager.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SubMesh.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_InputValidator.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Asset.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_LineInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextContainer.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Compatibility.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextParsingUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_DefaultControls.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_Private.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ShaderUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ScrollbarEventHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontFeatureTable.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextElement_Legacy.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontFeaturesCommon.cs" />
<Compile Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/MaterialReferenceManager.cs" />
<None Include="Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/Unity.TextMeshPro.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>
@ -336,6 +336,9 @@
<Reference Include="log4netPlastic">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.collab-proxy@1.15.13/Lib/Editor/PlasticSCM/log4netPlastic.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.NRefactory">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ICSharpCode.NRefactory.dll</HintPath>
</Reference>
<Reference Include="netstandard">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll</HintPath>
</Reference>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -36,129 +36,190 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/AnimationPlayableAssetInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/Menus/MenuItemActionBase.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/TrackAction.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Range.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/ViewModel/ScriptableObjectViewPrefs.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/SequenceSelectorNameFormater.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Utils/EditModeReplaceUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/HorizontalScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_Breadcrumbs.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ManipulationsTimeline.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Control.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimelineAssetEditionMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/TimelineRecordingContextualResponder.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Audio/AudioTrackInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Undo/ApplyDefaultUndoAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/Invoker.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/CustomEditors/CustomTimelineEditorCache.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Utils/EditModeRippleUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/MarkerAction.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Utils/EditModeMixUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/RectangleTool.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/TrackZoom.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/RectangleSelect.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/State/SequenceState.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Items/ClipItem.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/TimelineSelection.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/Layers/ItemsLayer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Undo/UndoExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimelineActiveMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Cursors/TimelineCursors.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/MarkerModifier.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/AddDelete/IAddDeleteItemMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/CurveDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/AnimationPlayableAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineMarkerHeaderGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/ControlTrack/ControlPlayableAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_Duration.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/TimelineAnimationUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Tooltip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/TimelineInspectorUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/SelectAndMoveItem.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/LabelWidthScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Items/ItemsGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/CurveEditUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/TimelineUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/IMenuName.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TimelineTreeViewGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Extensions/AnimatedParameterExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalEmitterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/State/ISequenceState.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimelineDisabledMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/StyleManager.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_Gui.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_TimeCursor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Analytics/TimelineAnalytics.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TimelineDragging.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TimelineTreeView.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/Menus/TimelineContextMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/CustomTrackDrawerAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalReceiverInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/CustomEditors/MarkerTrackEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/UnityEditorInternals.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/TreeView/SignalReceiverTreeView.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Utils/EditModeGUIUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/TrackResourceCache.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/EditorClipFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ManipulationsClips.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/InfiniteTrackDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/Jog.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Shortcuts.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindowTimeControl.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_EditorCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/IndentLevelScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/TimelineActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/BreadcrumbDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/State/SequencePath.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Trim/TrimItemModeRipple.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Utils/PlacementValidity.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/AnimationClipCurveCache.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ItemGui/TimelineMarkerGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/ClipAction.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/BindingTreeViewDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Attributes/MenuEntryAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Attributes/ActiveInModeAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/TimeFieldDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/TimelinePreferences.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/EditModeInputHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/ClipInspector/ClipInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackGui/TrackResizeHandle.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Move/IMoveItemMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/AnimationClipActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/BuiltInCurvePresets.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/GroupTrackInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/TimelineRecording.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Audio/AudioPlayableAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/EditorClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/TimelineRecording_Monobehaviour.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/TrackDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Snapping/SnapEngine.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_PlayableLookup.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/GUIViewportScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_ActiveTimeline.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Attributes/TimelineShortcutAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/Layers/ClipsLayer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/TimeIndicator.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/TimelineKeyboardNavigation.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalEmitterInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackPropertyCurvesDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Trim/TrimItemModeReplace.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/MenuPriority.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/ClipCurveEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/TimelineAction.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/TrackActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TimelineClipHandle.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Items/MarkerItem.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/AddDelete/AddDeleteItemModeMix.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/Styles.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/TypeUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Audio/AudioPlayableAssetInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimeReferenceMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/BindingTreeViewDataSourceGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Move/MoveItemModeMix.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/CurvesOwner/ICurvesOwnerInspectorWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/TimelineHelpers.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/ActionContext.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/ControlPlayableUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Trim/ITrimItemMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/GUIMixedValueScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Move/MoveItemHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/ClipsActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ItemGui/TimelineMarkerClusterGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/PlaybackScroller.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/GUIGroupScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/AnimatedParameterUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/PickerUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_Manipulators.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/ClipInspector/ClipInspectorCurveEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/ViewModel/TimelineAssetViewModel.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/TrackAssetRecordingExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/BindingSelector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Properties/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_HeaderGui.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/ClipInspector/ClipInspectorSelectionInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/DirectorStyles.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/AddDelete/AddDeleteItemModeRipple.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/TrackItemsDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/IPropertyKeyDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackGui/TimelineTrackErrorGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_PlayRange.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/AnimationTrackKeyDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/AnimationTrackDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/PropertyScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/MarkerHeaderContextMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_TimeArea.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/AnimatedParameterCache.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/State/WindowState.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/GUIColorOverride.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ItemGui/TimelineClipGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/DirectorNamedColorInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/AnimationPlayableAssetInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/TrackAction.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Range.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/ViewModel/ScriptableObjectViewPrefs.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/SequenceSelectorNameFormater.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Utils/EditModeReplaceUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ManipulationsTimeline.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimelineAssetEditionMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/TimelineRecordingContextualResponder.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Audio/AudioTrackInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/RectangleTool.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/Layers/ItemsLayer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimelineActiveMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Cursors/TimelineCursors.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/CurveDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/AnimationPlayableAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineMarkerHeaderGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/ControlTrack/ControlPlayableAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/TimelineAnimationUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/TimelineInspectorUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/CurveEditUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/IMenuName.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TimelineTreeViewGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Extensions/AnimatedParameterExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/StyleManager.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_TimeCursor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Analytics/TimelineAnalytics.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TimelineDragging.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/CustomTrackDrawerAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalReceiverInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/CustomEditors/MarkerTrackEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/UnityEditorInternals.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/TrackResourceCache.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/EditorClipFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ManipulationsClips.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/InfiniteTrackDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/TimelineActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/BreadcrumbDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/State/SequencePath.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/ClipAction.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/AnimationTrackActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/SpacePartitioner.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Graphics.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackGui/InlineCurveEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/TimelineRecording_PlayableAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Attributes/ActiveInModeAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/TimeFieldDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/TimelineProjectSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Trackhead.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/TimelinePreferences.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/CurveTreeViewNode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/StyleNormalColorOverride.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Extensions/TrackExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/EditModeInputHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/ClipInspector/ClipInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/AnimationClipExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackGui/TrackResizeHandle.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Move/IMoveItemMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ManipulationsTracks.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/DisplayNameHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_PreviewPlayMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimelineMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/AnimatedPropertyUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/AnimationClipActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/TimelineEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/IRowGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/BuiltInCurvePresets.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/AddDelete/AddDeleteItemModeReplace.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/AnimationTrackRecorder.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/GroupTrackInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackGui/TimelineTrackBaseGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/TimelineRecording.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Audio/AudioPlayableAssetEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/EditorClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/Layers/MarkersLayer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimelineInactiveMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/TimelineRecording_Monobehaviour.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/TrackDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Snapping/SnapEngine.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Utils/EditModeUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/TimelineClipGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/TimelineAssetInspector.cs" />
@ -166,130 +227,69 @@
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Activation/ActivationTrackEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/EaseClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/ViewModel/TimelineWindowViewPrefs.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_PlayableLookup.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/GUIViewportScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Activation/ActivationTrackInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Utils/ManipulatorsUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_ActiveTimeline.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Extensions/AnimationTrackExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/WindowConstants.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/EditMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Snapping/ISnappable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Attributes/TimelineShortcutAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/Layers/ClipsLayer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/TimeIndicator.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TimelineDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/AnimationOffsetMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/CustomEditors/MarkerEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/AnimationOffsetMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/ClipModifier.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/TimelineKeyboardNavigation.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalReceiverHeader.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Audio/AudioClipPropertiesDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/CustomEditors/ClipEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalEmitterInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackPropertyCurvesDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Snapping/IAttractable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Trim/TrimItemModeReplace.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ItemGui/ISelectable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/MenuPriority.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/ClipCurveEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/TimelineAction.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/TrackActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TimelineClipHandle.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Items/MarkerItem.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/CurvesOwner/CurvesOwnerInspectorHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/AddDelete/AddDeleteItemModeMix.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ItemGui/TimelineItemGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalAssetInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Undo/UndoScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/CustomEditors/TrackEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/Styles.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_StateChange.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/TypeUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/MarkerInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Attributes/ShortcutAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Audio/AudioPlayableAssetInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/RectangleZoom.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimeReferenceMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TimelineClipUnion.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_Selection.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/BindingTreeViewDataSourceGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Move/MoveItemModeMix.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/CurvesOwner/ICurvesOwnerInspectorWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/TimelineHelpers.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Items/ItemsPerTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Trim/TrimItemModeMix.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/DirectorNamedColor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/ActionContext.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/ControlPlayableUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Trim/ITrimItemMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalEventDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/IMenuChecked.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/IAction.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/ClipDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/GUIMixedValueScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/TrackModifier.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Move/MoveItemHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Items/ITimelineItem.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/ClipsActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/TrimClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Items/ItemsUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ItemGui/TimelineMarkerClusterGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/TreeView/SignalReceiverItem.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Move/MovingItems.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Move/MoveItemModeReplace.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/PlaybackScroller.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/GUIGroupScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/MarkerActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/TrackAssetInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/AnimatedParameterUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_Manipulators.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/PickerUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/MarkerActions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/BasicAssetInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackGui/TimelineGroupGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/ActionManager.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/Modes/TimelineReadOnlyMode.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/BindingUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/ClipInspector/ClipInspectorCurveEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/ViewModel/TimelineAssetViewModel.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/ObjectExtension.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Recording/TrackAssetRecordingExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/BindingSelector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Properties/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/TimeAreaAutoPanner.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/TreeView/SignalListFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Playables/ControlPlayableInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Manipulator.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_HeaderGui.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/ClipInspector/ClipInspectorSelectionInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/DirectorStyles.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/AddDelete/AddDeleteItemModeRipple.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/TrackItemsDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_TrackGui.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/ObjectReferenceField.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Clipboard.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/IPropertyKeyDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackGui/TimelineTrackErrorGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/TimeReferenceUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_PlayRange.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/TrackGui/TimelineTrackGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/AnimationTrackKeyDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/Drawers/AnimationTrackDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/PropertyScope.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/State/SequenceHierarchy.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Sequence/MarkerHeaderContextMenu.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Window/TimelineWindow_TimeArea.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/AnimatedParameterCache.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Animation/CurvesProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Signals/SignalManager.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/KeyTraverser.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/AnimationTrackInspector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/State/WindowState.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Manipulators/Move/MoveItemModeRipple.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes/GUIColorOverride.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/treeview/ItemGui/TimelineClipGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/inspectors/DirectorNamedColorInspector.cs" />
<None Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/Unity.Timeline.Editor.asmdef" />
<None Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/StyleSheets/res/Timeline_LightSkin.txt" />
<None Include="Library/PackageCache/com.unity.timeline@1.4.8/Editor/StyleSheets/Extensions/dark.uss" />
@ -545,6 +545,9 @@
<Reference Include="log4netPlastic">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.collab-proxy@1.15.13/Lib/Editor/PlasticSCM/log4netPlastic.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.NRefactory">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ICSharpCode.NRefactory.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll</HintPath>
</Reference>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -36,29 +36,54 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Animation/AnimationPlayableAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/Signals/SignalAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/Signals/CustomSignalEventDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/RuntimeElement.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Animation/AnimationPreviewUpdateCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/GroupTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/TimelinePlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/IPropertyPreview.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Properties/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/ClipCaps.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/TimelineAsset_CreateRemove.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/IPropertyCollector.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/AssetUpgrade/AnimationPlayableAssetUpgrade.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/IMarker.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Audio/AudioTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/TimelineAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/DirectorControlPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/AnimationPreviewUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/RuntimeClipBase.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/INotificationOptionProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/MarkerTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/TimelineCreateUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/HashUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/RuntimeClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Animation/ICurvesOwner.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/AssetUpgrade/TrackUpgrade.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Animation/AnimationTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Extensions/TrackExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Activation/ActivationTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Activation/ActivationMixerPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/PrefabControlPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/Signals/SignalReceiver.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Control/ControlPlayableAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/ILayerable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/TimelineClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Animation/AnimationOutputWeightProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/Marker.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/DiscreteTime.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/TimeNotificationBehaviour.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Attributes/TrackColorAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/AssetUpgrade/TimelineUpgrade.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/AssetUpgrade/ClipUpgrade.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/ScheduleRuntimeClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/AnimatorBindingCache.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Activation/ActivationPlayableAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/MarkerList.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/TimelineUndo.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/ParticleControlPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Animation/AnimationPlayableAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/RuntimeElement.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/GroupTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Properties/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/AssetUpgrade/AnimationPlayableAssetUpgrade.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/IMarker.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/RuntimeClipBase.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/MarkerTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Timeline.deprecated.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/InfiniteRuntimeClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/ITimeControl.cs" />
@ -66,45 +91,20 @@
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/WeightUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/TrackAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/TimeUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/RuntimeClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Scripting/PlayableTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Animation/ICurvesOwner.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Audio/AudioClipProperties.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/BasicScriptPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/AssetUpgrade/TrackUpgrade.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Animation/AnimationTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Extensions/TrackExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Audio/AudioPlayableAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/IntervalTree.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/NotificationFlags.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Activation/ActivationTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Activation/ActivationMixerPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/SignalTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/PrefabControlPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/TimelineAttributes.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Control/ControlTrack.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/Signals/SignalReceiver.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Control/ControlPlayableAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/ILayerable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/TimelineClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Animation/AnimationOutputWeightProcessor.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Audio/AudioMixerProperties.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/Marker.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/AssetUpgrade/AnimationTrackUpgrade.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/DiscreteTime.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/TimeNotificationBehaviour.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Attributes/TrackColorAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/AssetUpgrade/TimelineUpgrade.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/AssetUpgrade/ClipUpgrade.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/ActivationControlPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Evaluation/ScheduleRuntimeClip.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/AnimatorBindingCache.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/Signals/SignalEmitter.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Activation/ActivationPlayableAsset.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Events/MarkerList.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/TimeControlPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/TimelineUndo.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Playables/ParticleControlPlayable.cs" />
<Compile Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Utilities/Extrapolation.cs" />
<None Include="Library/PackageCache/com.unity.timeline@1.4.8/Runtime/Unity.Timeline.asmdef" />
<Reference Include="UnityEngine">
@ -347,6 +347,9 @@
<Reference Include="log4netPlastic">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.collab-proxy@1.15.13/Lib/Editor/PlasticSCM/log4netPlastic.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.NRefactory">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ICSharpCode.NRefactory.dll</HintPath>
</Reference>
<Reference Include="netstandard">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll</HintPath>
</Reference>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -22,7 +22,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Temp\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;ROSLYN_ANALYZER_FIX;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<DefineConstants>DEBUG;TRACE;UNITY_2020_3_26;UNITY_2020_3;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;ENABLE_ONSCREEN_KEYBOARD;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;UNITY_CAN_SHOW_SPLASH_SCREEN;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;PLATFORM_EXTENDS_VULKAN_DEVICE;PLATFORM_HAS_MULTIPLE_SWAPCHAINS;UNITY_ANDROID_SUPPORTS_SHADOWFILES;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_LINUX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER;NET_STANDARD_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0169</NoWarn>
@ -36,15 +36,15 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.5/Editor/VSCodeDiscovery.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.5/Editor/ProjectGeneration/StringUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.5/Editor/ProjectGeneration/GUIDGenerator.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.5/Editor/ProjectGeneration/AssemblyNameProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.5/Editor/ProjectGeneration/ProjectGeneration.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.5/Editor/ProjectGeneration/FileIO.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.5/Editor/ProjectGeneration/ProjectGenerationFlag.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.5/Editor/VSCodeScriptEditor.cs" />
<None Include="Library/PackageCache/com.unity.ide.vscode@1.2.5/Editor/Unity.com.unity.vscode.Editor.asmdef" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.4/Editor/VSCodeDiscovery.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.4/Editor/ProjectGeneration/StringUtils.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.4/Editor/ProjectGeneration/GUIDGenerator.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.4/Editor/ProjectGeneration/ProjectGeneration.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.4/Editor/ProjectGeneration/AssemblyNameProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.4/Editor/ProjectGeneration/FileIO.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.4/Editor/ProjectGeneration/ProjectGenerationFlag.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.vscode@1.2.4/Editor/VSCodeScriptEditor.cs" />
<None Include="Library/PackageCache/com.unity.ide.vscode@1.2.4/Editor/Unity.com.unity.vscode.Editor.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>
</Reference>
@ -294,6 +294,9 @@
<Reference Include="log4netPlastic">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.collab-proxy@1.15.13/Lib/Editor/PlasticSCM/log4netPlastic.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.NRefactory">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ICSharpCode.NRefactory.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll</HintPath>
</Reference>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -38,43 +38,43 @@
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/ProjectGeneration/ProjectGenerationFlag.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/VisualStudioIntegration.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/UnityInstallation.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/KnownAssemblies.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/UsageUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/Deserializer.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Testing/TestRunnerApiListener.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Testing/TestResultAdaptor.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/ExceptionEventArgs.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/ProjectGeneration/ProjectGeneration.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/SolutionProjectEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/UdpSocket.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/VisualStudioInstallation.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/MessageEventArgs.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Symbols.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/SolutionProperties.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/SolutionParser.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/Messenger.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/Serializer.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/ProjectGeneration/ProjectProperties.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/ProjectGeneration/FileIOProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Testing/TestRunnerCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Testing/TestAdaptor.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/UnityInstallation.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/Deserializer.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Testing/TestResultAdaptor.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/ProjectGeneration/ProjectGeneration.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/SolutionProjectEntry.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/MessageEventArgs.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/VisualStudioEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/VersionPair.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Cli.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/FileUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/ProjectGeneration/AssemblyNameProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/SolutionProperties.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/MessageType.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/SolutionParser.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/Messenger.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/Serializer.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/TcpListener.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/TcpClient.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Image.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Solution.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/ProjectGeneration/ProjectProperties.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/ProjectGeneration/FileIOProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/ProjectGeneration/GUIDProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Testing/TestStatusAdaptor.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Messaging/Message.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/AsyncOperation.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Discovery.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Testing/TestRunnerCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/Testing/TestAdaptor.cs" />
<None Include="Library/PackageCache/com.unity.ide.visualstudio@2.0.14/Editor/com.unity.ide.visualstudio.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -36,31 +36,19 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/IEditorLoadedTestAssemblyProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayModeRunTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/BuildActionTaskBase.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/PrebuildSetupTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestResultSerializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/Analytics/AnalyticsTestCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestRunnerResult.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdaterDataHolder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/Message.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestSettings/TestSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs" />
@ -68,136 +56,148 @@
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/TestAdaptor.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/RequireApiProfileAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/AttributeFinderBase.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/TestTaskBase.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ExecutionSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ITestAdaptor.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ITestRunSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/Analytics/AnalyticsReporter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/Filter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/TestJobDataHolder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/RunState.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ICallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/StadiaPlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/TestMode.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/NUnitExtension/Attributes/ITestPlayerBuildModifier.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/CallbacksDelegator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/TestRunCanceledException.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/IGuiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunnerWindowSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/DelayedCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/CallbacksHolder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/BuildTestTreeTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayerRunTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ITestTreeRebuildCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/ExitCallbacksDataHolder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherTestRunSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/LegacyEditModeRunTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ICallbacksHolder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestSettings/ITestSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/CleanupVerificationTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunnerWindow.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/SaveUndoIndexTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/NUnitExtension/Attributes/TestPlayerBuildModifierAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/EditModeLauncher.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/Executer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ICallbacksDelegator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/TestResultAdaptor.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/TestJobData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/RunData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ITestRunnerApi.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Callbacks/RerunCallbackInitializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/GuiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/UITestRunnerFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/SetupException.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/Analytics/TestTreeData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/SaveModiedSceneTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/PerformUndoTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/FileCleanupVerifierTaskBase.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/TestStatus.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/Analytics/RunFinishedData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/RegisterFilesForCleanupVerificationTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/TestJobRunner.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/IErrorCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/IEditorLoadedTestAssemblyProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/BuildActionTaskBase.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestResultSerializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestRunnerResult.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestSettings/TestSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ExecutionSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/Analytics/AnalyticsReporter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/RunState.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/StadiaPlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/NUnitExtension/Attributes/ITestPlayerBuildModifier.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/CallbacksDelegator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/IGuiHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/BuildTestTreeTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayerRunTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherTestRunSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/LegacyEditModeRunTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ICallbacksHolder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/CleanupVerificationTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/SaveUndoIndexTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/NUnitExtension/Attributes/TestPlayerBuildModifierAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Callbacks/EditModeRunnerCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/Executer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/RunData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/ITestRunnerApi.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/Analytics/TestTreeData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/SaveModiedSceneTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRun/Tasks/PerformUndoTask.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/Analytics/RunFinishedData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/ExitCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/TestRunnerApi.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/Api/IErrorCallbacks.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs" />
<None Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEditor.TestRunner/UnityEditor.TestRunner.asmdef" />
<Reference Include="UnityEngine">

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -36,41 +36,41 @@
<ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/RawImageEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/RectMask2DEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/DropdownOptionListDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ContentSizeFitterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/MenuOptions.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/FontDataDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/Physics2DRaycasterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SelfControllerEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/MaskEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/ColorBlockDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/InterceptedEventsPreview.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/InputFieldEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/Properties/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/LayoutPropertiesPreview.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/EventSystemEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/CanvasScalerEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SpriteDrawUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PrefabLayoutRebuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/GraphicEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SelectableEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/GridLayoutGroupEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/AspectRatioFitterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ImageEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SliderEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ScrollbarEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/LayoutElementEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ToggleEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/DropdownEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ButtonEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/PhysicsRaycasterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/TextEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ScrollRectEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/AnimationTriggersDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/EventTriggerEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/HorizontalOrVerticalLayoutGroupEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/RawImageEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/RectMask2DEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ContentSizeFitterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SelfControllerEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/MaskEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/ColorBlockDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/InterceptedEventsPreview.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/Properties/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/LayoutPropertiesPreview.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SpriteDrawUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/GraphicEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/GridLayoutGroupEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/AspectRatioFitterEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ScrollbarEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ToggleEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ScrollRectEditor.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/SpriteStateDrawer.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/NavigationDrawer.cs" />
<None Include="Library/PackageCache/com.unity.ugui@1.0.0/Editor/UnityEditor.UI.asmdef" />
@ -323,6 +323,9 @@
<Reference Include="log4netPlastic">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.collab-proxy@1.15.13/Lib/Editor/PlasticSCM/log4netPlastic.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.NRefactory">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ICSharpCode.NRefactory.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll</HintPath>
</Reference>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -38,94 +38,40 @@
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/ConditionalIgnoreAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/StacktraceFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRepeatedTestCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestState.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/TestCommandBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Filters/FullNameFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/TestRunCallbackListener.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Utils.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestMustExpectAllLogsAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AttributeHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/Is.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/TestPlatform.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/TestRunCallbackAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/UnityTestMethodCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/SynchronousFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/RuntimeTestRunnerFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/CoroutineRunner.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Callbacks/PlayerQuitHandler.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/LogAssert.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/ITestRunCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRetryTestCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs" />
@ -133,20 +79,74 @@
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/IAsyncTestAssemblyBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRepeatedTestCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestState.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Filters/FullNameFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/Utils.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestMustExpectAllLogsAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AttributeHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/Is.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/TestRunCallbackAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/UnityTestMethodCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/SynchronousFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/RuntimeTestRunnerFilter.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/CoroutineRunner.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/LogAssert.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/ITestRunCallback.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRetryTestCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs" />
<Compile Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs" />
<None Include="Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/UnityEngine.TestRunner.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -37,90 +37,90 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Image.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/HorizontalLayoutGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Toggle.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutElement.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IGraphicEnabledDisabled.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Button.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Mask.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ScrollRect.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Text.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRaycaster.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/VerticalLayoutGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Selectable.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Slider.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/HorizontalLayoutGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/Shadow.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IMaskable.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Utility/VertexHelper.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/BaseEventData.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/PointerEventData.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Utility/ListPool.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/IMeshModifier.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/MoveDirection.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/UIBehaviour.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Text.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Utility/ReflectionMethodsCache.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Animation/CoroutineTween.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SpriteState.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/RawImage.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/RectangularVertexClipper.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventInterfaces.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Graphic.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/CanvasScaler.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaterialModifiers/IMaterialModifier.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SetPropertyUtility.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/AspectRatioFitter.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventSystem.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/StencilMaterial.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/IClipRegion.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Misc.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRaycaster.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/InputField.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ToggleGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/RaycastResult.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Navigation.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/ContentSizeFitter.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/BaseInput.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/ILayoutElement.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaskUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/CanvasUpdateRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/PhysicsRaycaster.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/RectMask2D.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/DefaultControls.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/AxisEventData.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SpecializedCollections/IndexedSet.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventTriggerType.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MultipleDisplayUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/BaseMeshEffect.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutRebuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IMask.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/BaseInputModule.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/GridLayoutGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/PointerInputModule.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/RaycasterManager.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IGraphicEnabledDisabled.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Slider.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IMaskable.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/IMeshModifier.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Animation/CoroutineTween.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/CanvasScaler.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/AspectRatioFitter.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Misc.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/StandaloneInputModule.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Scrollbar.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/FontUpdateTracker.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ToggleGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/RaycastResult.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Button.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ColorBlock.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Navigation.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/ContentSizeFitter.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/Outline.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/ClipperRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/VerticalLayoutGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/BaseInput.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/Physics2DRaycaster.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/PositionAsUV1.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/ILayoutElement.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/ExecuteEvents.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventTrigger.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/FontData.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Dropdown.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaskUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/CanvasUpdateRegistry.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRebuildTracker.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Mask.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/Clipping.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ScrollRect.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/PhysicsRaycaster.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/RectMask2D.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Utility/ObjectPool.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/DefaultControls.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/AxisEventData.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/BaseRaycaster.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SpecializedCollections/IndexedSet.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventTriggerType.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaskableGraphic.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MultipleDisplayUtilities.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/BaseMeshEffect.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutRebuilder.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/AnimationTriggers.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/Properties/AssemblyInfo.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IMask.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventHandle.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/BaseInputModule.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/GridLayoutGroup.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/PointerInputModule.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/TouchInputModule.cs" />
<Compile Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/RaycasterManager.cs" />
<None Include="Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UnityEngine.UI.asmdef" />
<Reference Include="UnityEngine">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>
@ -362,6 +362,9 @@
<Reference Include="log4netPlastic">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.collab-proxy@1.15.13/Lib/Editor/PlasticSCM/log4netPlastic.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.NRefactory">
<HintPath>/media/RocketSpeed/Unity_Projects/UPF/Library/PackageCache/com.unity.render-pipelines.core@10.8.1/Editor/ShaderGenerator/ICSharpCode.NRefactory.dll</HintPath>
</Reference>
<Reference Include="netstandard">
<HintPath>/home/warlock/Unity/Hub/Editor/2020.3.26f1/Editor/Data/NetStandard/ref/2.0.0/netstandard.dll</HintPath>
</Reference>