-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimple.CodeParser.csproj
More file actions
38 lines (34 loc) · 1.45 KB
/
Simple.CodeParser.csproj
File metadata and controls
38 lines (34 loc) · 1.45 KB
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
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<Title>Simple Source Code Parser</Title>
<Description>Simple Code Parser (Roslyn based)</Description>
<Copyright>Copyright (c) 2023 by Dmitry Bychenko</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Dmitry-Bychenko/Simple.CodeParser.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/Dmitry-Bychenko/Simple.CodeParser</PackageProjectUrl>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>Dmitry Bychenko</Authors>
<PackageIcon>Simple.CodeParser.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build" Version="17.5.0" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.5.5" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.5.0" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="Simple.CodeParser.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>