41 lines
1.6 KiB
XML
Executable File
41 lines
1.6 KiB
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PackageId>MarketAlly.ProjectDetector</PackageId>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
<Version>1.0.1</Version>
|
|
<Authors>David H Friedel Jr</Authors>
|
|
<Company>MarketAlly</Company>
|
|
<Product>AI Project Detector</Product>
|
|
<Title>MarketAlly AI Project Detector</Title>
|
|
<PackageOutputPath>C:\Users\logik\Dropbox\Nugets</PackageOutputPath>
|
|
<Description>Shared project type detection library for MarketAlly ecosystem</Description>
|
|
<PackageProjectUrl>https://github.com/marketally/projectdetector</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/marketally/projectdetector</RepositoryUrl>
|
|
<PackageTags>project;detection;analysis;csharp;typescript;python;java;go</PackageTags>
|
|
<Copyright>Copyright © 2025 MarketAlly</Copyright>
|
|
<PackageIcon>icon_pd.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="icon_pd.png">
|
|
<Pack>true</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Visible>true</Visible>
|
|
</None>
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="System.Text.Json" Version="9.0.11" />
|
|
</ItemGroup>
|
|
|
|
</Project> |