decode-file.csproj 440 B

123456789101112131415
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <RootNamespace>decode_file</RootNamespace>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <!-- Use * to denote the latest stable version. -->
  11. <PackageReference Include="org.k2fsa.sherpa.ncnn" Version="*" />
  12. </ItemGroup>
  13. </Project>