forked from Quahu/Laylua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLaylua.targets
More file actions
33 lines (33 loc) · 1.58 KB
/
Copy pathLaylua.targets
File metadata and controls
33 lines (33 loc) · 1.58 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>0.0.1</VersionPrefix>
<LangVersion>preview</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<Authors>Quahu,Niewiarowski</Authors>
<Description>A library that allows you to easily embed and sandbox Lua in your application.</Description>
<PackageTags>lua wrapper sandbox embed script</PackageTags>
<RepositoryUrl>https://github.com/Quahu/Laylua</RepositoryUrl>
<PackageProjectUrl>https://github.com/Quahu/Laylua</PackageProjectUrl>
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
<RepositoryType>Git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup>
<NoWarn>
CA2255, <!-- The 'ModuleInitializer' attribute is only intended to be used in application code or advanced source generator scenarios -->
CS0078, <!-- The 'l' suffix is easily confused with the digit '1' - use 'L' for clarity -->
CA1401, <!-- P/Invokes should not be visible-->
</NoWarn>
</PropertyGroup>
</Project>