-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleFileLogger.csproj
58 lines (50 loc) · 2.01 KB
/
SimpleFileLogger.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
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Specify multiple target frameworks -->
<TargetFrameworks>net8.0;net472</TargetFrameworks>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<RootNamespace>SimpleFileLogger</RootNamespace>
<OutputType>Library</OutputType>
<Deterministic>true</Deterministic>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<!-- Assembly attributes -->
<Title>SimpleFileLogger</Title>
<Description>Adds basic logging capabilities to any program</Description>
<Company>IVA Elektronik</Company>
<Authors>IVA Elektronik</Authors>
<Product>SimpleFileLogger</Product>
<Copyright>Copyright © 2024</Copyright>
<PackageId>IVA.SimpleFileLogger</PackageId>
<PackageOutputPath>Z:\Projects\Repos\NuGetPackages\</PackageOutputPath>
<AssemblyName>SimpleFileLogger</AssemblyName>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.1.1</FileVersion>
<Version>1.1.1</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/kuklei/SimpleFileLogger.git</RepositoryUrl>
<ComVisible>false</ComVisible>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<PackageReleaseNotes>Initial Version</PackageReleaseNotes>
</PropertyGroup>
<!-- Configuration for Debug and Release builds -->
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<None Include="app.config" Condition="'$(TargetFramework)' == 'net472'" />
<None Include="README.md" Pack="true" PackagePath="" />
<Content Include=".gitignore" />
</ItemGroup>
<!-- Framework-specific references -->
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>