|
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | 4 | <OutputType>Exe</OutputType> |
5 | | - <TargetFramework>net6.0</TargetFramework> |
| 5 | + <TargetFramework>net7.0</TargetFramework> |
| 6 | + <Version>0.2.0</Version> |
| 7 | + <Authors>Lucas de Linhares</Authors> |
| 8 | + <Description>Just another programming language</Description> |
| 9 | + <FileDescription>Just another programming lanugage</FileDescription> |
| 10 | + |
6 | 11 | <ImplicitUsings>enable</ImplicitUsings> |
7 | 12 | <Nullable>enable</Nullable> |
8 | 13 | <WarningsAsErrors>Nullable</WarningsAsErrors> |
9 | 14 | <Optimize>true</Optimize> |
10 | 15 | <PackAsTool>true</PackAsTool> |
11 | 16 | <ToolCommandName>crit</ToolCommandName> |
12 | 17 | <PackageOutputPath>./nupkg</PackageOutputPath> |
| 18 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 19 | + <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> |
| 20 | + <Platforms>AnyCPU;x64</Platforms> |
13 | 21 | </PropertyGroup> |
14 | 22 |
|
15 | | - <ItemGroup> |
16 | | - <PackageReference Include="Antlr4" Version="4.6.6"> |
17 | | - <PrivateAssets>all</PrivateAssets> |
18 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
19 | | - </PackageReference> |
20 | | - <PackageReference Include="Antlr4.CodeGenerator" Version="4.6.6"> |
21 | | - <PrivateAssets>all</PrivateAssets> |
22 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
23 | | - </PackageReference> |
24 | | - <PackageReference Include="Antlr4.Runtime" Version="4.6.6" /> |
25 | | - </ItemGroup> |
| 23 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 24 | + <DebugType>embedded</DebugType> |
| 25 | + </PropertyGroup> |
| 26 | + |
| 27 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 28 | + <DebugType>none</DebugType> |
| 29 | + </PropertyGroup> |
| 30 | + |
| 31 | + <PropertyGroup> |
| 32 | + <StripSymbols>true</StripSymbols> |
| 33 | + </PropertyGroup> |
| 34 | + |
26 | 35 | <ItemGroup> |
27 | 36 | <Content Include="Crit.g4" /> |
| 37 | + <Content Include=".\antlr\*.cs" /> |
| 38 | + </ItemGroup> |
| 39 | + <ItemGroup> |
| 40 | + <Compile Include="C:\Users\lucas\Desktop\CritVisitor.cs" Link="CritVisitor.cs" /> |
| 41 | + <Compile Include="Content\.antlr\CritBaseListener.cs" /> |
| 42 | + <Compile Include="Content\.antlr\CritBaseVisitor.cs" /> |
| 43 | + <Compile Include="Content\.antlr\CritLexer.cs" /> |
| 44 | + <Compile Include="Content\.antlr\CritListener.cs" /> |
| 45 | + <Compile Include="Content\.antlr\CritParser.cs" /> |
| 46 | + <Compile Include="Content\.antlr\CritVisitor.cs" /> |
| 47 | + </ItemGroup> |
| 48 | + <ItemGroup> |
| 49 | + <PackageReference Include="Antlr4.Runtime.Standard" Version="4.11.1" /> |
| 50 | + <PackageReference Include="Antlr4BuildTasks" Version="12.1.0" PrivateAssets="all" /> |
28 | 51 | </ItemGroup> |
29 | 52 | <ItemGroup> |
30 | 53 | <None Update="Content\test.crit"> |
31 | 54 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
32 | 55 | </None> |
| 56 | + </ItemGroup> |
| 57 | + <ItemGroup> |
| 58 | + <None Include="..\LICENSE"> |
| 59 | + <Pack>True</Pack> |
| 60 | + <PackagePath>\</PackagePath> |
| 61 | + </None> |
| 62 | + <None Include="Content\.antlr\Crit.interp" /> |
| 63 | + <None Include="Content\.antlr\Crit.tokens" /> |
| 64 | + <None Include="Content\.antlr\CritLexer.interp" /> |
| 65 | + <None Include="Content\.antlr\CritLexer.tokens" /> |
33 | 66 | </ItemGroup> |
34 | 67 |
|
| 68 | + <PropertyGroup > |
| 69 | + <PublishAot>true</PublishAot> |
| 70 | + </PropertyGroup> |
35 | 71 | </Project> |
0 commit comments