2024-05-04 10:45:42 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<RootNamespace>CSV_Metrics_Logger</RootNamespace>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
|
2024-05-05 11:19:54 +00:00
|
|
|
|
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<AssemblyVersion>1.0.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>1.0.0</FileVersion>
|
|
|
|
|
<PackageVersion>1.0.0</PackageVersion>
|
|
|
|
|
<Authors>Thorsten Sommer</Authors>
|
|
|
|
|
<PackageProjectUrl>https://devops.tsommer.org/open-source/dotnet/csv-metrics-logger</PackageProjectUrl>
|
|
|
|
|
<RepositoryUrl>https://devops.tsommer.org/open-source/dotnet/csv-metrics-logger</RepositoryUrl>
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
|
|
|
<AssemblyName>CSVMetricsLogger</AssemblyName>
|
2024-05-04 10:45:42 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-05-05 10:20:33 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\CSV Metrics Logger Generator\CSV Metrics Logger Generator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-05 11:19:54 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<DocumentationFile>bin\Debug\CSVMetricsLogger.xml</DocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DocumentationFile>bin\Release\CSVMetricsLogger.xml</DocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="README.md" Pack="true" PackagePath="\"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-04 10:45:42 +00:00
|
|
|
|
</Project>
|