-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathScript.csproj
More file actions
33 lines (33 loc) · 1.4 KB
/
Script.csproj
File metadata and controls
33 lines (33 loc) · 1.4 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
<?xml version="1.0" ?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyName>Ephemera.NProcessing.Script</AssemblyName>
<RootNamespace>Ephemera.NProcessing.Script</RootNamespace>
<Deterministic>False</Deterministic>
<Version>$([System.DateTime]::UtcNow.ToString(yy.MM.dd))</Version>
<Description>NProcessing script</Description>
<Copyright>MIT License</Copyright>
<OutputPath>bin\</OutputPath>
<!-- <DefineConstants>DEBUG;TRACE</DefineConstants> -->
<WarningLevel>4</WarningLevel>
<NoWarn>CS1591;CA1822;IDE1006</NoWarn>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
<!-- en none -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.6"/>
<PackageReference Include="System.Drawing.Common" Version="6.0.0"/>
</ItemGroup>
<ItemGroup>
<Reference Include="Ephemera.NBagOfTricks">
<HintPath>..\lib\Ephemera.NBagOfTricks.dll</HintPath>
</Reference>
<Reference Include="Ephemera.NBagOfUis">
<HintPath>..\lib\Ephemera.NBagOfUis.dll</HintPath>
</Reference>
</ItemGroup>
</Project>