-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
71 lines (65 loc) · 3.55 KB
/
Directory.Build.props
File metadata and controls
71 lines (65 loc) · 3.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<Project>
<PropertyGroup Label="project">
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<AppDesignerFolder>Properties</AppDesignerFolder>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AssemblyOriginatorKeyFile>$(SolutionRoot)/Solution Items/Key.snk</AssemblyOriginatorKeyFile>
<AssemblyTitle>FIX ME - AssemblyTitle!</AssemblyTitle>
<Authors>RandallFlagg; Various Contributers; Jud White</Authors>
<Company>CrOSS Solutions</Company>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Copyright>Copyright © CrOSS Solutions 2025</Copyright>
<Description>.NET 8+ ID3 Tagging Library</Description>
<Deterministic>true</Deterministic>
<EnableWindowsTargeting>false</EnableWindowsTargeting>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateResourceUsePreserializedResources>false</GenerateResourceUsePreserializedResources>
<ImplicitUsings>enable</ImplicitUsings>
<ImportWindowsDesktopTargets>false</ImportWindowsDesktopTargets>
<IsTestProject>false</IsTestProject>
<Nullable>enable</Nullable>
<Optimize Condition="'$(Configuration)' == 'Release'">true</Optimize>
<!--<OutputPath>$(SolutionDir)..\bin\$(Configuration)</OutputPath>--><!--TODO: Normalize this across solution-->
<Product>IdSharp</Product>
<PublishAot>false</PublishAot>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RootNamespace>IdSharp</RootNamespace>
<SignAssembly>false</SignAssembly><!--TODO: Enable this-->
<SolutionRoot>$(MSBuildThisFileDirectory)</SolutionRoot>
<UseWindowsForms>false</UseWindowsForms>
</PropertyGroup>
<PropertyGroup Label="version">
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
<InformationalVersion>5.0.0.0+sha1.abcd1234</InformationalVersion>
<Version>2.0.0</Version>
</PropertyGroup>
<PropertyGroup Label="nuget">
<IncludeSymbols>true</IncludeSymbols>
<!-- <PackageLicenseExpression>FSL-1.1-MIT</PackageLicenseExpression> -->
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/RandallFlagg/IdSharp</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>id3 id3-parser id3-reader id3-writer id3v1 id3v2 id3v2-tag idsharp mp3 mp3-tags mp3tag mpeg4tag</PackageTags>
<PackageVersion>2.0.3</PackageVersion>
<RepositoryUrl>https://github.com/RandallFlagg/IdSharp.git</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Title>IdSharp</Title>
</PropertyGroup>
<ItemGroup Label="Links">
<Compile Include="$(SolutionRoot)/Solution Items/AssemblyInfo.cs" Link="Properties/SharedAssemblyInfo.cs" />
<None Include="$(SolutionRoot)/Solution Items/Key.snk" Link="Key.snk" />
</ItemGroup>
<ItemGroup Label="nuget">
<!-- If README is outside of project folders -->
<None Include="$(SolutionRoot)/LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" />
<None Include="$(SolutionRoot)/README.md" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>
<!--<PackageVersion>1.0.0-rc4</PackageVersion>
<RepositoryUrl>https://github.com/RandallFlagg/IdSharpCore.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/RandallFlagg/IdSharpCore</PackageProjectUrl>
<Title>IdSharp Core</Title>
<PackageLicenseUrl>https://raw.githubusercontent.com/RandallFlagg/IdSharpCore/master/LICENSE</PackageLicenseUrl>
<PackageTags>mp3tag mp3-tags mp3 id3 id3v2 id3v2-tag id3-reader id3-writer id3-parser id3v1 idsharp</PackageTags>-->