-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDib2Html.csproj
36 lines (31 loc) · 1.51 KB
/
Dib2Html.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>dib2html</Title>
<Description>Runs dotnet interactive notebooks and writes their outputs to HTML.</Description>
<PackageId>dib2html</PackageId>
<Version>1.0.0</Version>
<Copyright>(c) Pascal Grittmann</Copyright>
<RepositoryUrl>https://github.com/pgrit/dib2html</RepositoryUrl>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>dib2html</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.Interactive" Version="1.0.0-beta.23205.1" />
<PackageReference Include="Microsoft.DotNet.Interactive.CSharp" Version="1.0.0-beta.23205.1" />
<PackageReference Include="Microsoft.DotNet.Interactive.FSharp" Version="1.0.0-beta.23205.1" />
<PackageReference Include="Microsoft.DotNet.Interactive.Mermaid" Version="1.0.0-beta.23205.1" />
<PackageReference Include="Microsoft.DotNet.Interactive.PowerShell" Version="1.0.0-beta.23205.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>