Compare commits

...

1 Commits
main ... llama

Author SHA1 Message Date
5c7b2e7bfd llama init 2025-02-12 19:41:54 -05:00
833 changed files with 67772 additions and 4 deletions

18
Assets/NuGet.config Normal file
View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<disabledPackageSources />
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<config>
<add key="packageInstallLocation" value="CustomWithinAssets" />
<add key="repositoryPath" value="./Packages" />
<add key="PackagesConfigDirectoryPath" value="." />
<add key="slimRestore" value="true" />
<add key="PreferNetStandardOverNetFramework" value="true" />
</config>
</configuration>

2
Assets/NuGet.config.meta Normal file
View File

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: c2580c867af34e1f5b32f8608fead674

8
Assets/Packages.meta Normal file
View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ab890539a7cfa610893c9abb7c829593
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 636965843ec59c693bf17b881f5faf41
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>LLamaSharp</id>
<version>0.21.0</version>
<authors>Rinne, Martin Evans, jlsantiago and all the other contributors in https://github.com/SciSharp/LLamaSharp/graphs/contributors.</authors>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<readme>README.md</readme>
<iconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</iconUrl>
<description>LLamaSharp is a cross-platform library to run 🦙LLaMA/LLaVA model (and others) in your local device.
Based on [llama.cpp](https://github.com/ggerganov/llama.cpp), inference with LLamaSharp is efficient on both CPU and GPU.
With the higher-level APIs and RAG support, it's convenient to deploy LLM (Large Language Model) in your application with LLamaSharp.</description>
<releaseNotes>Updated llama.cpp version to 5783575c9d99c4d9370495800663aa5397ceb0be</releaseNotes>
<copyright>MIT, SciSharp STACK 2025</copyright>
<tags>LLama, LLM, GPT, ChatGPT, NLP, AI, Chat Bot, SciSharp</tags>
<repository type="git" url="https://github.com/SciSharp/LLamaSharp" commit="f9b61f5b697aee0ad81837e46cda939125427749" />
<dependencies>
<group targetFramework="net8.0">
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="9.0.0" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.AI.Abstractions" version="9.1.0-preview.1.25064.3" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="9.0.0" exclude="Build,Analyzers" />
<dependency id="System.Numerics.Tensors" version="9.0.0" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="9.0.0" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.AI.Abstractions" version="9.1.0-preview.1.25064.3" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="9.0.0" exclude="Build,Analyzers" />
<dependency id="System.Linq.Async" version="6.0.1" exclude="Build,Analyzers" />
<dependency id="System.Numerics.Tensors" version="9.0.0" exclude="Build,Analyzers" />
<dependency id="System.Text.Json" version="9.0.0" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
</package>

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: bfe3f35f644b72f3996f44a59cab61f2
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,269 @@
![logo](Assets/LLamaSharpLogo.png)
[![Discord](https://img.shields.io/discord/1106946823282761851?label=Discord)](https://discord.gg/7wNVU65ZDY)
[![QQ Group](https://img.shields.io/static/v1?label=QQ&message=加入QQ群&color=brightgreen)](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=sN9VVMwbWjs5L0ATpizKKxOcZdEPMrp8&authKey=RLDw41bLTrEyEgZZi%2FzT4pYk%2BwmEFgFcrhs8ZbkiVY7a4JFckzJefaYNW6Lk4yPX&noverify=0&group_code=985366726)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp?label=LLamaSharp)](https://www.nuget.org/packages/LLamaSharp)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cpu?label=LLamaSharp.Backend.Cpu)](https://www.nuget.org/packages/LLamaSharp.Backend.Cpu)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cuda11?label=LLamaSharp.Backend.Cuda11)](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda11)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cuda12?label=LLamaSharp.Backend.Cuda12)](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda12)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.semantic-kernel?label=LLamaSharp.semantic-kernel)](https://www.nuget.org/packages/LLamaSharp.semantic-kernel)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.kernel-memory?label=LLamaSharp.kernel-memory)](https://www.nuget.org/packages/LLamaSharp.kernel-memory)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Vulkan?label=LLamaSharp.Backend.Vulkan)](https://www.nuget.org/packages/LLamaSharp.Backend.Vulkan)
**LLamaSharp is a cross-platform library to run 🦙LLaMA/LLaVA model (and others) on your local device. Based on [llama.cpp](https://github.com/ggerganov/llama.cpp), inference with LLamaSharp is efficient on both CPU and GPU. With the higher-level APIs and RAG support, it's convenient to deploy LLMs (Large Language Models) in your application with LLamaSharp.**
**Please star the repo to show your support for this project!🤗**
---
<details>
<summary>Table of Contents</summary>
<ul>
<li><a href="#Documentation">Documentation</a></li>
<li><a href="#Console Demo">Console Demo</a></li>
<li><a href="#Integrations & Examples">Integrations & Examples</a></li>
<li><a href="#Get started">Get started</a></li>
<li><a href="#FAQ">FAQ</a></li>
<li><a href="#Contributing">Contributing</a></li>
<li><a href="#Join the community">Join the community</a></li>
<li><a href="#Star history">Star history</a></li>
<li><a href="#Contributor wall of fame">Contributor wall of fame</a></li>
<li><a href="#Map of LLamaSharp and llama.cpp versions">Map of LLamaSharp and llama.cpp versions</a></li>
</ul>
</details>
## 📖Documentation
- [Quick start](https://scisharp.github.io/LLamaSharp/latest/QuickStart/)
- [FAQ](https://scisharp.github.io/LLamaSharp/latest/FAQ/)
- [Tutorial](https://scisharp.github.io/LLamaSharp/latest/Tutorials/NativeLibraryConfig/)
- [Full documentation](https://scisharp.github.io/LLamaSharp/latest/)
- [API reference](https://scisharp.github.io/LLamaSharp/latest/xmldocs/)
## 📌Console Demo
<table class="center">
<tr style="line-height: 0">
<td width=50% height=30 style="border: none; text-align: center">LLaMA</td>
<td width=50% height=30 style="border: none; text-align: center">LLaVA</td>
</tr>
<tr>
<td width=25% style="border: none"><img src="Assets/console_demo.gif" style="width:100%"></td>
<td width=25% style="border: none"><img src="Assets/llava_demo.gif" style="width:100%"></td>
</tr>
</table>
## 🔗Integrations & Examples
There are integrations for the following libraries, making it easier to develop your APP. Integrations for semantic-kernel and kernel-memory are developed in the LLamaSharp repository, while others are developed in their own repositories.
- [semantic-kernel](https://github.com/microsoft/semantic-kernel): an SDK that integrates LLMs like OpenAI, Azure OpenAI, and Hugging Face.
- [kernel-memory](https://github.com/microsoft/kernel-memory): a multi-modal AI Service specialized in the efficient indexing of datasets through custom continuous data hybrid pipelines, with support for RAG ([Retrieval Augmented Generation](https://en.wikipedia.org/wiki/Prompt_engineering#Retrieval-augmented_generation)), synthetic memory, prompt engineering, and custom semantic memory processing.
- [BotSharp](https://github.com/SciSharp/BotSharp): an open source machine learning framework for AI Bot platform builder.
- [Langchain](https://github.com/tryAGI/LangChain): a framework for developing applications powered by language models.
The following examples show how to build APPs with LLamaSharp.
- [Official Console Examples](./LLama.Examples/)
- [Unity Demo](https://github.com/eublefar/LLAMASharpUnityDemo)
- [LLamaStack (with WPF and Web demo)](https://github.com/saddam213/LLamaStack)
- [Blazor Demo (with Model Explorer)](https://github.com/alexhiggins732/BLlamaSharp.ChatGpt.Blazor)
- [ASP.NET Demo](./LLama.Web/)
- [LLamaWorker (ASP.NET Web API like OAI and Function Calling Support)](https://github.com/sangyuxiaowu/LLamaWorker)
- [VirtualPet (Desktop Application)](https://github.com/AcoranGonzalezMoray/VirtualPet-WindowsEdition)
![LLamaSharp-Integrations](./Assets/LLamaSharp-Integrations.png)
## 🚀Get started
### Installation
To gain high performance, LLamaSharp interacts with native libraries compiled from c++, these are called `backends`. We provide backend packages for Windows, Linux and Mac with CPU, CUDA, Metal and Vulkan. You **don't** need to compile any c++, just install the backend packages.
If no published backend matches your device, please open an issue to let us know. If compiling c++ code is not difficult for you, you could also follow [this guide](./docs/ContributingGuide.md) to compile a backend and run LLamaSharp with it.
1. Install [LLamaSharp](https://www.nuget.org/packages/LLamaSharp) package on NuGet:
```
PM> Install-Package LLamaSharp
```
2. Install one or more of these backends, or use a self-compiled backend.
- [`LLamaSharp.Backend.Cpu`](https://www.nuget.org/packages/LLamaSharp.Backend.Cpu): Pure CPU for Windows, Linux & Mac. Metal (GPU) support for Mac.
- [`LLamaSharp.Backend.Cuda11`](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda11): CUDA 11 for Windows & Linux.
- [`LLamaSharp.Backend.Cuda12`](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda12): CUDA 12 for Windows & Linux.
- [`LLamaSharp.Backend.Vulkan`](https://www.nuget.org/packages/LLamaSharp.Backend.Vulkan): Vulkan for Windows & Linux.
3. (optional) For [Microsoft semantic-kernel](https://github.com/microsoft/semantic-kernel) integration, install the [LLamaSharp.semantic-kernel](https://www.nuget.org/packages/LLamaSharp.semantic-kernel) package.
4. (optional) To enable RAG support, install the [LLamaSharp.kernel-memory](https://www.nuget.org/packages/LLamaSharp.kernel-memory) package (this package only supports `net6.0` or higher yet), which is based on [Microsoft kernel-memory](https://github.com/microsoft/kernel-memory) integration.
### Model preparation
There are two popular formats of model file of LLMs, these are PyTorch format (.pth) and Huggingface format (.bin). LLamaSharp uses a `GGUF` format file, which can be converted from these two formats. To get a `GGUF` file, there are two options:
1. Search model name + 'gguf' in [Huggingface](https://huggingface.co), you will find lots of model files that have already been converted to GGUF format. Please take note of the publishing time of them because some old ones may only work with older versions of LLamaSharp.
2. Convert PyTorch or Huggingface format to GGUF format yourself. Please follow the instructions from [this part of llama.cpp readme](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#prepare-and-quantize) to convert them with python scripts.
Generally, we recommend downloading models with quantization rather than fp16, because it significantly reduces the required memory size while only slightly impacting the generation quality.
### Example of LLaMA chat session
Here is a simple example to chat with a bot based on a LLM in LLamaSharp. Please replace the model path with yours.
```cs
using LLama.Common;
using LLama;
string modelPath = @"<Your Model Path>"; // change it to your own model path.
var parameters = new ModelParams(modelPath)
{
ContextSize = 1024, // The longest length of chat as memory.
GpuLayerCount = 5 // How many layers to offload to GPU. Please adjust it according to your GPU memory.
};
using var model = LLamaWeights.LoadFromFile(parameters);
using var context = model.CreateContext(parameters);
var executor = new InteractiveExecutor(context);
// Add chat histories as prompt to tell AI how to act.
var chatHistory = new ChatHistory();
chatHistory.AddMessage(AuthorRole.System, "Transcript of a dialog, where the User interacts with an Assistant named Bob. Bob is helpful, kind, honest, good at writing, and never fails to answer the User's requests immediately and with precision.");
chatHistory.AddMessage(AuthorRole.User, "Hello, Bob.");
chatHistory.AddMessage(AuthorRole.Assistant, "Hello. How may I help you today?");
ChatSession session = new(executor, chatHistory);
InferenceParams inferenceParams = new InferenceParams()
{
MaxTokens = 256, // No more than 256 tokens should appear in answer. Remove it if antiprompt is enough for control.
AntiPrompts = new List<string> { "User:" }, // Stop generation once antiprompts appear.
SamplingPipeline = new DefaultSamplingPipeline(),
};
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write("The chat session has started.\nUser: ");
Console.ForegroundColor = ConsoleColor.Green;
string userInput = Console.ReadLine() ?? "";
while (userInput != "exit")
{
await foreach ( // Generate the response streamingly.
var text
in session.ChatAsync(
new ChatHistory.Message(AuthorRole.User, userInput),
inferenceParams))
{
Console.ForegroundColor = ConsoleColor.White;
Console.Write(text);
}
Console.ForegroundColor = ConsoleColor.Green;
userInput = Console.ReadLine() ?? "";
}
```
For more examples, please refer to [LLamaSharp.Examples](./LLama.Examples).
## 💡FAQ
#### Why is my GPU not used when I have installed CUDA?
1. If you are using backend packages, please make sure you have installed the CUDA backend package which matches the CUDA version installed on your system.
2. Add the following line to the very beginning of your code. The log will show which native library file is loaded. If the CPU library is loaded, please try to compile the native library yourself and open an issue for that. If the CUDA library is loaded, please check if `GpuLayerCount > 0` when loading the model weight.
```cs
NativeLibraryConfig.Instance.WithLogCallback(delegate (LLamaLogLevel level, string message) { Console.Write($"{level}: {message}"); } )
```
#### Why is the inference so slow?
Firstly, due to the large size of LLM models, it requires more time to generate output than other models, especially when you are using models larger than 30B parameters.
To see if that's a LLamaSharp performance issue, please follow the two tips below.
1. If you are using CUDA, Metal or Vulkan, please set `GpuLayerCount` as large as possible.
2. If it's still slower than you expect it to be, please try to run the same model with same setting in [llama.cpp examples](https://github.com/ggerganov/llama.cpp/tree/master/examples). If llama.cpp outperforms LLamaSharp significantly, it's likely a LLamaSharp BUG and please report that to us.
#### Why does the program crash before any output is generated?
Generally, there are two possible cases for this problem:
1. The native library (backend) you are using is not compatible with the LLamaSharp version. If you compiled the native library yourself, please make sure you have checked-out llama.cpp to the corresponding commit of LLamaSharp, which can be found at the bottom of README.
2. The model file you are using is not compatible with the backend. If you are using a GGUF file downloaded from huggingface, please check its publishing time.
#### Why is my model generating output infinitely?
Please set anti-prompt or max-length when executing the inference.
## 🙌Contributing
All contributions are welcome! There's a TODO list in [LLamaSharp Dev Project](https://github.com/orgs/SciSharp/projects/5) and you can pick an interesting one to start. Please read the [contributing guide](./CONTRIBUTING.md) for more information.
You can also do one of the following to help us make LLamaSharp better:
- Submit a feature request.
- Star and share LLamaSharp to let others know about it.
- Write a blog or demo about LLamaSharp.
- Help to develop Web API and UI integration.
- Just open an issue about the problem you've found!
## Join the community
Join our chat on [Discord](https://discord.gg/7wNVU65ZDY) (please contact Rinne to join the dev channel if you want to be a contributor).
Join [QQ group](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=sN9VVMwbWjs5L0ATpizKKxOcZdEPMrp8&authKey=RLDw41bLTrEyEgZZi%2FzT4pYk%2BwmEFgFcrhs8ZbkiVY7a4JFckzJefaYNW6Lk4yPX&noverify=0&group_code=985366726)
## Star history
[![Star History Chart](https://api.star-history.com/svg?repos=SciSharp/LLamaSharp)](https://star-history.com/#SciSharp/LLamaSharp&Date)
## Contributor wall of fame
[![LLamaSharp Contributors](https://contrib.rocks/image?repo=SciSharp/LLamaSharp)](https://github.com/SciSharp/LLamaSharp/graphs/contributors)
## Map of LLamaSharp and llama.cpp versions
If you want to compile llama.cpp yourself you **must** use the exact commit ID listed for each version.
| LLamaSharp | Verified Model Resources | llama.cpp commit id |
| - | -- | - |
| v0.2.0 | This version is not recommended to use. | - |
| v0.2.1 | [WizardLM](https://huggingface.co/TheBloke/wizardLM-7B-GGML/tree/previous_llama), [Vicuna (filenames with "old")](https://huggingface.co/eachadea/ggml-vicuna-13b-1.1/tree/main) | - |
| v0.2.2, v0.2.3 | [WizardLM](https://huggingface.co/TheBloke/wizardLM-7B-GGML/tree/previous_llama_ggmlv2), [Vicuna (filenames without "old")](https://huggingface.co/eachadea/ggml-vicuna-13b-1.1/tree/main) | `63d2046` |
| v0.3.0, v0.4.0 | [LLamaSharpSamples v0.3.0](https://huggingface.co/AsakusaRinne/LLamaSharpSamples/tree/v0.3.0), [WizardLM](https://huggingface.co/TheBloke/wizardLM-7B-GGML/tree/main) | `7e4ea5b` |
| v0.4.1-preview | [Open llama 3b](https://huggingface.co/SlyEcho/open_llama_3b_ggml), [Open Buddy](https://huggingface.co/OpenBuddy/openbuddy-llama-ggml)| `aacdbd4` |
|v0.4.2-preview | [Llama2 7B (GGML)](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGML)| `3323112` |
| v0.5.1 | [Llama2 7B (GGUF)](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF)| `6b73ef1` |
| v0.6.0 | | [`cb33f43`](https://github.com/ggerganov/llama.cpp/commit/cb33f43a2a9f5a5a5f8d290dd97c625d9ba97a2f) |
| v0.7.0, v0.8.0 | [Thespis-13B](https://huggingface.co/TheBloke/Thespis-13B-v0.5-GGUF/tree/main?not-for-all-audiences=true), [LLaMA2-7B](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF) | [`207b519`](https://github.com/ggerganov/llama.cpp/commit/207b51900e15cc7f89763a3bb1c565fe11cbb45d) |
| v0.8.1 | | [`e937066`](https://github.com/ggerganov/llama.cpp/commit/e937066420b79a757bf80e9836eb12b88420a218) |
| v0.9.0, v0.9.1 | [Mixtral-8x7B](https://huggingface.co/TheBloke/Mixtral-8x7B-v0.1-GGUF) | [`9fb13f9`](https://github.com/ggerganov/llama.cpp/blob/9fb13f95840c722ad419f390dc8a9c86080a3700) |
| v0.10.0 | [Phi2](https://huggingface.co/TheBloke/phi-2-GGUF) | [`d71ac90`](https://github.com/ggerganov/llama.cpp/tree/d71ac90985854b0905e1abba778e407e17f9f887) |
| v0.11.1, v0.11.2 | [LLaVA-v1.5](https://hf-mirror.com/jartine/llava-v1.5-7B-GGUF/blob/main/llava-v1.5-7b-mmproj-Q4_0.gguf), [Phi2](https://huggingface.co/TheBloke/phi-2-GGUF)| [`3ab8b3a`](https://github.com/ggerganov/llama.cpp/tree/3ab8b3a92ede46df88bc5a2dfca3777de4a2b2b6) |
| v0.12.0 | LLama3 | [`a743d76`](https://github.com/ggerganov/llama.cpp/tree/a743d76a01f23038b2c85af1e9048ee836767b44) |
| v0.13.0 | | [`1debe72`](https://github.com/ggerganov/llama.cpp/tree/1debe72737ea131cb52975da3d53ed3a835df3a6) |
| v0.14.0 | Gemma2 | [`36864569`](https://github.com/ggerganov/llama.cpp/tree/368645698ab648e390dcd7c00a2bf60efa654f57) |
| v0.15.0 | LLama3.1 | [`345c8c0c`](https://github.com/ggerganov/llama.cpp/tree/345c8c0c87a97c1595f9c8b14833d531c8c7d8df) |
| v0.16.0 | | [`11b84eb4`](https://github.com/ggerganov/llama.cpp/tree/11b84eb4578864827afcf956db5b571003f18180) |
| v0.17.0 | | [`c35e586e`](https://github.com/ggerganov/llama.cpp/tree/c35e586ea57221844442c65a1172498c54971cb0) |
| v0.18.0 | | [`c35e586e`](https://github.com/ggerganov/llama.cpp/tree/c35e586ea57221844442c65a1172498c54971cb0) |
| v0.19.0 | | [`958367bf`](https://github.com/ggerganov/llama.cpp/tree/958367bf530d943a902afa1ce1c342476098576b) |
| v0.20.0 | | [`0827b2c1`](https://github.com/ggerganov/llama.cpp/tree/0827b2c1da299805288abbd556d869318f2b121e) |
| v0.21.0 | | [`5783575c`](https://github.com/ggerganov/llama.cpp/tree/5783575c9d99c4d9370495800663aa5397ceb0be) |
## License
This project is licensed under the terms of the MIT license.

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 63192d32e849551238a5cdc53236686c
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e7631e8e5c1431433be8d6402f6abf7c
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 5ba284620da5bf88aa74980eff1af5af
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@ -0,0 +1,29 @@
fileFormatVersion: 2
guid: 381252d9d25ca5fcbbb704565fe77126
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 1
settings: {}
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
WindowsStoreApps:
enabled: 0
settings:
CPU: AnyCPU
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: d026a86dc56a0efc8b38919a8f0a0207
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a7da5a0204981c7c1836ed7925726d56
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>LLamaSharp.Backend.Cpu</id>
<version>0.21.0</version>
<title>LLamaSharp.Backend.Cpu, the backend for LLamaSharp</title>
<authors>llama.cpp Authors</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<icon>icon512.png</icon>
<projectUrl>https://github.com/SciSharp/LLamaSharp</projectUrl>
<description>LLamaSharp.Backend.Cpu is a backend for LLamaSharp to use with Cpu only.</description>
<releaseNotes></releaseNotes>
<copyright>Copyright 2023 The llama.cpp Authors. All rights reserved.</copyright>
<tags>LLamaSharp LLama LLM GPT AI ChatBot SciSharp</tags>
</metadata>
</package>

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 9c95dd7d1a81e38d88fa6c68ef8a80ec
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,117 @@
fileFormatVersion: 2
guid: fe8951864279553a4aa23f7cfb96bc31
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
customData:
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 7e3b623f23645fbdbac08f862161c33e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9183345255e26f454bde3ccf838fc4ff
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 83493f3c59e82962ebd6bd5c580cecd5
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 05dc3c20bbd0790ba843b3ea0a30ad58
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 18ead8342c8644389b4bf8a480c12a43
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 3c93668b5c8c4730b199b379fea4a185
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 9a6be9d930cd4ec7a4f02fb6ac468d3a
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 0d49ee6176a54a96a4e54de5d967aaea
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 2846428a4ce74e2590d4983c7afc719d
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 607ff69954bcd9198962176e57ef3e3b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 917aad0d60c5467bb00ed734df2fe416
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 23037954d7714574a2edc4b7f517f786
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: a53660bb5d7749f2a79cff8824747e9e
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: dde802fab50c43d795a81ca4e4a900c0
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 76b656e0c348450b8d9de65aa2d37a6a
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8c8f2d554d6da6a27a474454cea38f9e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: fa873b6f27534d4d85806a86dcbde8d7
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: da86c7c680e345a3949a7d3ad444218f
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 75ec28c73b2448f9afa757f930683404
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 61ef9eec92ea4e698bc81de0fa3cb18e
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 368e27e8a1a3460fb5c7bfdfaf77b16e
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3ab8e2b24642e875eb58f013926f8091
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 48d31ae2093548bdaac7698f604aee83
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 09a973d2b7f3445bb984be8664f3ff23
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 680f408be02e47e5bcfaabf0c24bbce0
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: c5485f03b76349e5a9754eab4aabe868
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,69 @@
fileFormatVersion: 2
guid: 58acff590380401eabaf97813ca0014e
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
CPU: x86_64
DefaultValueInitialized: true
OS: Linux
Linux64:
enabled: 1
settings:
CPU: x86_64
OSXUniversal:
enabled: 0
settings: {}
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 83514264c94bfa0628fe0cd2d6de7237
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4ebbcc51596ead803b2aa42229f6a4e6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 42ae92e1a394811c0903436bbbfef3b8
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,67 @@
fileFormatVersion: 2
guid: adc2d41f4ac14e76baffe812401fa49b
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: ARM64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,67 @@
fileFormatVersion: 2
guid: 61c0a6dab6bf4c92a5325ec5a726216c
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: ARM64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,67 @@
fileFormatVersion: 2
guid: 4a649b742071480d8ebe16b3e754dc11
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: ARM64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,67 @@
fileFormatVersion: 2
guid: a58fe1accce04a6cbc5dc31b812513f6
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: ARM64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,67 @@
fileFormatVersion: 2
guid: bbb629cb1af34cbcaff1afa2a31d6e9b
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: ARM64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,67 @@
fileFormatVersion: 2
guid: faaea53d177e4ca0a17d4e9f520af867
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: ARM64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,67 @@
fileFormatVersion: 2
guid: 66b7beae256947e09bba2c098f996ca9
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: ARM64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 23c461ad3df9449db9087eecb0ce1dab
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: fb05ec2d237f98f208f4e9ddcc15a18e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,68 @@
fileFormatVersion: 2
guid: 538b259c488a4f9bbd58c2d821abb381
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
DefaultValueInitialized: true
OS: OSX
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: x86_64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,68 @@
fileFormatVersion: 2
guid: 9085dbcb0a67438ebc5e7fba1f142351
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
DefaultValueInitialized: true
OS: OSX
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: x86_64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,68 @@
fileFormatVersion: 2
guid: 30bfca6b3bd44dadab65f783fba9d7f2
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
DefaultValueInitialized: true
OS: OSX
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: x86_64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,68 @@
fileFormatVersion: 2
guid: 5da9dee4306d4dafb9a7355ecc649d42
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
DefaultValueInitialized: true
OS: OSX
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: x86_64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,68 @@
fileFormatVersion: 2
guid: 9b8efd876fc842c8992bb610248d097a
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
DefaultValueInitialized: true
OS: OSX
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: x86_64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,68 @@
fileFormatVersion: 2
guid: 24e687f0eb264830980e733ff4418561
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings:
'Exclude ': 1
Exclude Android: 1
Exclude Bratwurst: 1
Exclude CloudRendering: 1
Exclude Editor: 1
Exclude EmbeddedLinux: 1
Exclude GameCoreScarlett: 1
Exclude GameCoreXboxOne: 1
Exclude Linux64: 1
Exclude OSXUniversal: 1
Exclude PS4: 1
Exclude PS5: 1
Exclude QNX: 1
Exclude ReservedCFE: 1
Exclude Switch: 1
Exclude VisionOS: 1
Exclude WebGL: 1
Exclude Win: 1
Exclude Win64: 1
Exclude WindowsStoreApps: 1
Exclude XboxOne: 1
Exclude iOS: 1
Exclude tvOS: 1
Editor:
enabled: 1
settings:
DefaultValueInitialized: true
OS: OSX
Linux64:
enabled: 0
settings: {}
OSXUniversal:
enabled: 1
settings:
CPU: x86_64
Win:
enabled: 0
settings: {}
Win64:
enabled: 0
settings: {}
WindowsStoreApps:
enabled: 0
settings: {}
iOS:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

Some files were not shown because too many files have changed in this diff Show More