forked from vein-lang/vein
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
32 lines (32 loc) · 1.4 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
<Project>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<InvariantGlobalization>true</InvariantGlobalization>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<Version>0.4.1182</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="Linux" />
<SupportedPlatform Include="macOS" />
<SupportedPlatform Include="Windows" />
</ItemGroup>
<PropertyGroup>
<CurrentYear>$([System.DateTime]::Now.ToString(yyyy))</CurrentYear>
<PackageIconUrl>https://raw.githubusercontent.com/0xF6/mana_lang/master/ide_ext/vscode/images/icon.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/0xF6/mana_lang</PackageProjectUrl>
<RepositoryUrl>https://github.com/0xF6/mana_lang</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Copyright>(C) 2020-$(CurrentYear) Yuuki Wesp</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Yuuki Wesp</Authors>
<Company>ManaLang project</Company>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" Version="5.6.10" PrivateAssets="All"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>