-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalma.debugify.csproj
62 lines (54 loc) · 2.1 KB
/
alma.debugify.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
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<PackAsTool>true</PackAsTool>
<ToolCommandName>debugify</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Version>1.2.0.0</Version>
<Authors>gentledepp</Authors>
<Company />
<Product />
<Description>A dotnet tool that allows you to quickly debug your own nuget packages</Description>
<PackageProjectUrl></PackageProjectUrl>
<PackageIcon>icon\debugify.png</PackageIcon>
<RepositoryUrl>https://github.com/gentledepp/alma.debugify</RepositoryUrl>
<RepositoryType>GIT</RepositoryType>
<PackageTags>nuget debug</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReleaseNotes>
#1.2.0.0
- target .net 8
#1.1.0.0
- deletes existing *.symbols.nupkg files
- ignores "Test" and "Tests" projects
- can handle package versions, where revision is not set (2.3.1 instead of 2.3.1.0)
- can determine packageid by <PackageId>, <AssemblyName > or *.csproj filename)
#1.0.6.3
- dropped "--force" flag due to 'MSBUILD : error MSB1001: unknown switch.'
#1.0.6.2
- if version cannot be replaced, outputs error instead of cancelling process
#1.0.6.1
- supports adding additional arguments for dotnet pack
- supports project files without <version> element as long as a version is provided using the -v argument
- fallback to msbuild if additional targets are required that dotnet pack does not support
- swapping project files so git status does not complain about "file changed though contents are the same"
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="nupkg\" />
</ItemGroup>
<ItemGroup>
<None Update="icon\debugify.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>