forked from yanghuan/CSharp.lua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSharp.lua.csproj
More file actions
26 lines (22 loc) · 889 Bytes
/
Copy pathCSharp.lua.csproj
File metadata and controls
26 lines (22 loc) · 889 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>1.1.0</Version>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Copyright>Copyright © YANG Huan 2017</Copyright>
<Description>The C# to Lua compiler</Description>
<Company>YANG Huan</Company>
<Authors>YANG Huan</Authors>
<PackageProjectUrl>https://github.com/yanghuan/CSharp.lua</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/yanghuan/CSharp.lua/master/LICENSE</PackageLicenseUrl>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.4.0" />
</ItemGroup>
<ItemGroup>
<None Update="System.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>