mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
- Substitute occurrences of "-2020" with "-2021" using: git grep -I -l -e '-2020' -- ':(exclude)*.bak' | xargs \ sed -b -i -e 's/-2020/-2021/g'
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net47;net20;netcoreapp2.0</TargetFrameworks>
|
|
<Version>2.1.7.0</Version>
|
|
<AssemblyName>CUETools.LossyWAV</AssemblyName>
|
|
<RootNamespace>CUETools.LossyWAV</RootNamespace>
|
|
<Product>CUETools</Product>
|
|
<OutputType>Exe</OutputType>
|
|
<Description>A tool for encoding and decoding LossyWAV.</Description>
|
|
<Copyright>Copyright (c) 2007-2008 Nick Currie, C# port (c) 2008-2021 Grigory Chudov</Copyright>
|
|
<Authors>Grigory Chudov</Authors>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<OutputPath>..\bin\$(Configuration)\</OutputPath>
|
|
<RepositoryUrl>https://github.com/gchudov/cuetools.net</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<Company />
|
|
</PropertyGroup>
|
|
|
|
<ItemDefinitionGroup>
|
|
<ProjectReference>
|
|
<Private>False</Private>
|
|
</ProjectReference>
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CUETools.Codecs.LossyWAV\CUETools.Codecs.LossyWAV.csproj" />
|
|
<ProjectReference Include="..\CUETools.Codecs\CUETools.Codecs.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|