forked from dotnet/interactive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClockExtension.csproj
More file actions
26 lines (21 loc) · 841 Bytes
/
ClockExtension.csproj
File metadata and controls
26 lines (21 loc) · 841 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net5.0</TargetFramework>
<IncludeBuildOutput>true</IncludeBuildOutput>
<IsPackable>true</IsPackable>
<PackageDescription>Renders a clock in dotnet-interactive using SVG</PackageDescription>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<EmbeddedResource Remove="bin\**" />
<None Remove="bin\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="microsoft.dotnet.interactive" Version="1.0.0-beta.21357.1" />
<PackageReference Include="microsoft.dotnet.interactive.csharp" Version="1.0.0-beta.21357.1" />
</ItemGroup>
<ItemGroup>
<None Include="$(OutputPath)/ClockExtension.dll" Pack="true" PackagePath="interactive-extensions/dotnet" />
</ItemGroup>
</Project>