forked from dotnet-outdated/dotnet-outdated
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDotNetOutdated.Core.csproj
More file actions
44 lines (40 loc) · 2.04 KB
/
DotNetOutdated.Core.csproj
File metadata and controls
44 lines (40 loc) · 2.04 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
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<IsPackable>true</IsPackable>
<PackageTags>dotnet;outdated;core;lib</PackageTags>
<Description>The core functionality of DotNet Outdated as a library which allows you to embed it into your own applications</Description>
<Authors>dotnet-outdated Team & Contributors</Authors>
<Copyright>Copyright (c) Jerrie Pelser</Copyright>
<LangVersion>latest</LangVersion>
<PackageId>DotNetOutdatedTool.Core</PackageId>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/dotnet-outdated/dotnet-outdated</PackageProjectUrl>
<PackageReleaseNotes>See $(PackageProjectUrl)/blob/master/CHANGELOG.md#$(VersionSuffix.Replace('.','')) for release notes.</PackageReleaseNotes>
<PackageVersion>$(VersionSuffix)</PackageVersion>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/dotnet-outdated/dotnet-outdated.git</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NuGet.Configuration" Version="6.12.1" />
<PackageReference Include="NuGet.Credentials" Version="6.12.1" />
<PackageReference Include="NuGet.ProjectModel" Version="6.12.1" />
<PackageReference Include="NuGet.Protocol" Version="6.12.1" />
<PackageReference Include="NuGet.Versioning" Version="6.13.2" />
<PackageReference Include="System.Formats.Asn1" Version="10.0.0" />
<PackageReference Include="System.IO.Abstractions" Version="22.0.12" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\ValidationErrorMessages.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ValidationErrorMessages.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\ValidationErrorMessages.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>ValidationErrorMessages.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>