-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathUnityDataTool.csproj
More file actions
34 lines (28 loc) · 1.18 KB
/
UnityDataTool.csproj
File metadata and controls
34 lines (28 loc) · 1.18 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>1.3.2</Version>
<AssemblyVersion>1.3.2.0</AssemblyVersion>
<FileVersion>1.3.2.0</FileVersion>
<InformationalVersion>1.3.2</InformationalVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
<PackageReference Include="System.IO.Packaging" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ReferenceFinder\ReferenceFinder.csproj" />
<ProjectReference Include="..\TextDumper\TextDumper.csproj" />
<ProjectReference Include="..\Analyzer\Analyzer.csproj" />
<ProjectReference Include="..\UnityBinaryFormat\UnityBinaryFormat.csproj" />
<ProjectReference Include="..\UnityFileSystem\UnityFileSystem.csproj" />
</ItemGroup>
</Project>