-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy pathDirectory.Build.props
33 lines (30 loc) · 1.5 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<!-- To support Unity 2018.4 with .NET Framework we can not 'easily' use features of C# higher than 7.3 -->
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<!-- Packaging -->
<PropertyGroup>
<RepositoryUrl>https://github.com/GlitchEnzo/NuGetForUnity</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/GlitchEnzo/NuGetForUnity</PackageProjectUrl>
<Authors>NuGetForUnity Contributors</Authors>
<Owners>NuGetForUnity-Contributors</Owners>
<IncludeSymbols>true</IncludeSymbols>
<LicenseFile>$(MSBuildThisFileDirectory)../LICENSE</LicenseFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright (c) 2017-$([System.DateTime]::Now.ToString('yyyy')) Patrick McCarthy and contributors</Copyright>
<PackageReleaseNotes>https://github.com/GlitchEnzo/NuGetForUnity/releases</PackageReleaseNotes>
<PackageTags>Unity;Package Manager</PackageTags>
</PropertyGroup>
<ItemGroup>
<SourceRoot Include="$(MSBuildThisFileDirectory)/../" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>