This repository has been archived by the owner on Aug 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
VentFramework.csproj
45 lines (35 loc) · 1.89 KB
/
VentFramework.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>VentFramework</Title>
<Description>A modding framework for the popular social deduction game Among Us </Description>
<Version>1.2.4.2</Version>
<RootNamespace>VentLib</RootNamespace>
<TargetFramework>net6.0</TargetFramework>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/ImaMapleTree/VentFramework</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<Authors>ImaMapleTree</Authors>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0">
<IncludeAssets>runtime; compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.671" PrivateAssets="all" />
<PackageReference Include="JetBrains.Annotations" Version="2023.2.0-eap3">
<Aliases>JetbrainsAnnotations</Aliases>
</PackageReference>
<PackageReference Include="Pastel" Version="4.1.0" />
<PackageReference Include="Samboy063.Cpp2IL.Core" Version="2022.1.0-development.866" />
<PackageReference Include="AmongUs.GameLibs.Steam" Version="2023.7.11" PrivateAssets="all" />
<PackageReference Include="BepInEx.IL2CPP.MSBuild" Version="2.0.1" PrivateAssets="all" />
<PackageReference Include="YamlDotNet" Version="12.3.1" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
</Project>