|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
2 |
| - |
3 |
| - <PropertyGroup> |
4 |
| - <TargetFramework>net8.0</TargetFramework> |
5 |
| - <ImplicitUsings>enable</ImplicitUsings> |
6 |
| - <Nullable>enable</Nullable> |
7 |
| - <GenerateDocumentationFile>True</GenerateDocumentationFile> |
8 |
| - <NoWarn>CS1591</NoWarn> |
9 |
| - <AssemblyTitle>ILSourceParser</AssemblyTitle> |
10 |
| - <Company>winscripter</Company> |
11 |
| - <AssemblyVersion>1.0.0.0</AssemblyVersion> |
12 |
| - </PropertyGroup> |
13 |
| - |
14 |
| - <ItemGroup> |
15 |
| - <PackageReference Include="Sprache" Version="2.3.1" /> |
16 |
| - <PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" /> |
17 |
| - </ItemGroup> |
18 |
| - |
19 |
| -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net8.0</TargetFramework> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
| 8 | + <NoWarn>CS1591</NoWarn> |
| 9 | + <AssemblyTitle>ILSourceParser</AssemblyTitle> |
| 10 | + <Company>winscripter</Company> |
| 11 | + <AssemblyVersion>1.1.0.0</AssemblyVersion> |
| 12 | + <Title>ILSourceParser</Title> |
| 13 | + <Authors>winscripter</Authors> |
| 14 | + <Description>Provides functionality for parsing Microsoft Intermediate Language (IL) syntax to a syntax tree with C#.</Description> |
| 15 | + <Copyright>Copyright (c) winscripter, 2024</Copyright> |
| 16 | + <PackageProjectUrl>https://github.com/winscripter/ILSourceParser</PackageProjectUrl> |
| 17 | + <RepositoryUrl>https://github.com/winscripter/ILSourceParser</RepositoryUrl> |
| 18 | + <PackageTags>il; msil; bytecode; dotnet; syntax; text; cil; ecma335</PackageTags> |
| 19 | + <PackageIcon>ILSourceParser-icon.png</PackageIcon> |
| 20 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 21 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 22 | + <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> |
| 23 | + <Version>1.1.0</Version> |
| 24 | + <PackageReleaseNotes>Added new feature to parse .try/finally blocks</PackageReleaseNotes> |
| 25 | + </PropertyGroup> |
| 26 | + |
| 27 | + <ItemGroup> |
| 28 | + <None Include="..\..\..\..\Documents\ILSourceParser-icon.png"> |
| 29 | + <Pack>True</Pack> |
| 30 | + <PackagePath>\</PackagePath> |
| 31 | + </None> |
| 32 | + <None Include="..\..\..\..\Downloads\README.md"> |
| 33 | + <Pack>True</Pack> |
| 34 | + <PackagePath>\</PackagePath> |
| 35 | + </None> |
| 36 | + </ItemGroup> |
| 37 | + |
| 38 | + <ItemGroup> |
| 39 | + <PackageReference Include="Sprache" Version="2.3.1" /> |
| 40 | + <PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" /> |
| 41 | + </ItemGroup> |
| 42 | + |
| 43 | +</Project> |
0 commit comments