-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy pathCodeConv.csproj
More file actions
48 lines (43 loc) · 2.21 KB
/
CodeConv.csproj
File metadata and controls
48 lines (43 loc) · 2.21 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
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<AssemblyName>ICSharpCode.CodeConverter.CodeConv</AssemblyName>
<RootNamespace>ICSharpCode.CodeConverter.CodeConv</RootNamespace>
<ToolCommandName>codeconv</ToolCommandName>
<Description>Bidirectional code converter for VB and C#</Description>
<PackageReadmeFile>PackageReadme.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/icsharpcode/CodeConverter/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>CodeConvNuGetPackageIcon.png</PackageIcon>
<RepositoryUrl>https://github.com/icsharpcode/CodeConverter/</RepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Nullable>enable</Nullable>
<EmbedUntrackedSources>$(ContinuousIntegrationBuild)</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<None Include="docs\PackageReadme.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<None Include="CodeConvNuGetPackageIcon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.2" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="17.8.43" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="4.14.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.14.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CodeConverter\CodeConverter.csproj" />
</ItemGroup>
</Project>