diff options
Diffstat (limited to 'Impostor-dev/src/Impostor.Api/Impostor.Api.csproj')
-rw-r--r-- | Impostor-dev/src/Impostor.Api/Impostor.Api.csproj | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Impostor-dev/src/Impostor.Api/Impostor.Api.csproj b/Impostor-dev/src/Impostor.Api/Impostor.Api.csproj new file mode 100644 index 0000000..8ad2582 --- /dev/null +++ b/Impostor-dev/src/Impostor.Api/Impostor.Api.csproj @@ -0,0 +1,38 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFramework>netstandard2.0</TargetFramework> + <CodeAnalysisRuleSet>ProjectRules.ruleset</CodeAnalysisRuleSet> + <LangVersion>9</LangVersion> + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> + <Nullable>enable</Nullable> + <Version>1.0.0</Version> + <IncludeSymbols>true</IncludeSymbols> + <SymbolPackageFormat>snupkg</SymbolPackageFormat> + <AssemblyName>Impostor.Api</AssemblyName> + <AssemblyTitle>Impostor.Api</AssemblyTitle> + <Authors>AeonLucid</Authors> + <Description>An api library for Impostor, an Among Us private server. You need this package to write plugins for Impostor.</Description> + <PackageId>Impostor.Api</PackageId> + <PackageTags>Among Us;Impostor;Impostor Plugin</PackageTags> + <PackageIconUrl>https://raw.githubusercontent.com/Impostor/Impostor/dev/docs/images/logo_64.png</PackageIconUrl> + <PackageProjectUrl>https://github.com/Impostor/Impostor</PackageProjectUrl> + <RepositoryType>git</RepositoryType> + <RepositoryUrl>https://github.com/Impostor/Impostor</RepositoryUrl> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.0" /> + <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" /> + <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="5.0.0" /> + <PackageReference Include="Nullable" Version="1.3.0"> + <PrivateAssets>all</PrivateAssets> + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> + </PackageReference> + <PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> + <PrivateAssets>all</PrivateAssets> + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> + </PackageReference> + </ItemGroup> + +</Project>
\ No newline at end of file |