-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ttfs2Mix.csproj
30 lines (30 loc) · 1.07 KB
/
Ttfs2Mix.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyTitle>TTFS to Mix Utility</AssemblyTitle>
<Description>Utility to convert TTFS packages to Mix packages.</Description>
<Company>Unstoppable</Company>
<Product>Ttfs2Mix</Product>
<Copyright>Copyright © 2020</Copyright>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="MixLibrary.dll" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TTPackageClass.dll" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="MixLibrary">
<Version>1.2.0</Version>
</PackageReference>
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
<PackageReference Include="TTPackageClass">
<Version>1.3.0</Version>
</PackageReference>
</ItemGroup>
</Project>