-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (25 loc) · 1.06 KB
/
Directory.Build.props
File metadata and controls
28 lines (25 loc) · 1.06 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
<Project>
<PropertyGroup>
<Authors>AXiX</Authors>
<Copyright>AXiX</Copyright>
<PackageProjectUrl>https://github.com/AXiX-official/UnityAsset.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/AXiX-official/UnityAsset.NET</RepositoryUrl>
<PackageTags>Unity</PackageTags>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<PackageOutputPath>$(SolutionDir)artifacts\</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)LICENSE" Pack="true" PackagePath="\" />
<None Include="$(SolutionDir)README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>