-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmartLogger.csproj
48 lines (38 loc) · 1.57 KB
/
SmartLogger.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
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8</TargetFrameworks>
<Authors>Greg Stevenson</Authors>
<Company>Sierra Blanco Systems</Company>
<Description>This is an internal NuGet package to install SmartInspect logging into Oqtane projects. It is not for external publication.</Description>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageOutputPath>C:\MyPackages\</PackageOutputPath>
<ApplicationIcon>SmartInspect.ico</ApplicationIcon>
<PackageIcon>SmartInspect.png</PackageIcon>
<AssemblyVersion>1.0.0.8</AssemblyVersion>
<FileVersion>1.0.0.8</FileVersion>
<Version>1.0.0.8</Version>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
<PackageIconUrl />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8|AnyCPU'">
<OutputPath>bin\Release\net8\</OutputPath>
</PropertyGroup>
<ItemGroup>
<None Include="SmartInspect.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="8.0.3" />
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" />
</ItemGroup>
</Project>