-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunigine-photon-csharp-integration-sample.csproj
More file actions
117 lines (117 loc) · 5.8 KB
/
unigine-photon-csharp-integration-sample.csproj
File metadata and controls
117 lines (117 loc) · 5.8 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<RootNamespace>UnigineApp</RootNamespace>
<StartupObject>UnigineApp.UnigineApp</StartupObject>
<WarningLevel>4</WarningLevel>
<OutputPath>bin</OutputPath>
<UseAppHost>true</UseAppHost>
<AppHostSourcePath Condition="'$(OS)' == 'Windows_NT'">$(OutputPath)\dotnet_host_x64.exe</AppHostSourcePath>
<EnableDefaultItems>false</EnableDefaultItems>
<Platforms>x64</Platforms>
<PlatformTarget>x64</PlatformTarget>
<DebugType>portable</DebugType>
<Configurations>Debug;Release;Debug-Double;Release-Double</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<AssemblyName>unigine-photon-csharp-integration-sample_x64d</AssemblyName>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
<DefineConstants>TRACE;DEBUG;</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)'=='Debug'">
<Reference Include="UnigineSharp_x64d">
<SpecificVersion>false</SpecificVersion>
<HintPath>bin\UnigineSharp_x64d.dll</HintPath>
</Reference>
<Analyzer Include="bin\UnigineCSPropertyBinder_x64d.dll"/>
<UnigineSharpLibPath Include="bin\UnigineSharp_x64d.dll"/>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug-Double'">
<AssemblyName>unigine-photon-csharp-integration-sample_x64d</AssemblyName>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
<DefineConstants>TRACE;DEBUG;UNIGINE_DOUBLE;</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)'=='Debug-Double'">
<Reference Include="UnigineSharp_double_x64d">
<SpecificVersion>false</SpecificVersion>
<HintPath>bin\UnigineSharp_double_x64d.dll</HintPath>
</Reference>
<Analyzer Include="bin\UnigineCSPropertyBinder_double_x64d.dll"/>
<UnigineSharpLibPath Include="bin\UnigineSharp_double_x64d.dll"/>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<AssemblyName>unigine-photon-csharp-integration-sample_x64</AssemblyName>
<Optimize>true</Optimize>
<DefineConstants>TRACE;NDEBUG;</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)'=='Release'">
<Reference Include="UnigineSharp_x64">
<SpecificVersion>false</SpecificVersion>
<HintPath>bin\UnigineSharp_x64.dll</HintPath>
</Reference>
<Analyzer Include="bin\UnigineCSPropertyBinder_x64.dll"/>
<UnigineSharpLibPath Include="bin\UnigineSharp_x64.dll"/>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release-Double'">
<AssemblyName>unigine-photon-csharp-integration-sample_x64</AssemblyName>
<Optimize>true</Optimize>
<DefineConstants>TRACE;NDEBUG;UNIGINE_DOUBLE;</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)'=='Release-Double'">
<Reference Include="UnigineSharp_double_x64">
<SpecificVersion>false</SpecificVersion>
<HintPath>bin\UnigineSharp_double_x64.dll</HintPath>
</Reference>
<Analyzer Include="bin\UnigineCSPropertyBinder_double_x64.dll"/>
<UnigineSharpLibPath Include="bin\UnigineSharp_double_x64.dll"/>
</ItemGroup>
<ItemGroup>
<Compile Include="data\GameChat.cs" />
<AdditionalFiles Include="data/GameChat.cs.meta" Visible="false"/>
<Compile Include="data\GameManager.cs" />
<AdditionalFiles Include="data/GameManager.cs.meta" Visible="false"/>
<Compile Include="data\Utils.cs" />
<AdditionalFiles Include="data/Utils.cs.meta" Visible="false"/>
<Compile Include="source\AppEditorLogic.cs" />
<Compile Include="source\AppSystemLogic.cs" />
<Compile Include="source\AppWorldLogic.cs" />
<Compile Include="source\main.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Photon-NetStandard">
<HintPath>bin\Photon-NetStandard.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="source\PhotonSDK\PhotonChatApi\*.cs" />
<Compile Include="source\PhotonSDK\PhotonLoadbalancingApi\*.cs" />
</ItemGroup>
<Target Name="UnigineVersionDefines" BeforeTargets="CoreCompile" Condition="'@(UnigineSharpLibPath)' != '' AND Exists('@(UnigineSharpLibPath)')">
<GetAssemblyIdentity AssemblyFiles="@(UnigineSharpLibPath)">
<Output TaskParameter="Assemblies" ItemName="LibAssemblyInfo"/>
</GetAssemblyIdentity>
<PropertyGroup>
<UnigineLibVersion>%(LibAssemblyInfo.Version)</UnigineLibVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(UnigineLibVersion)' != ''">
<VersionMajor>$([System.Version]::Parse('$(UnigineLibVersion)').Major)</VersionMajor>
<VersionMinor>$([System.Version]::Parse('$(UnigineLibVersion)').Minor)</VersionMinor>
<VersionPatch>$([System.Version]::Parse('$(UnigineLibVersion)').Build)</VersionPatch>
<VersionRevision>$([System.Version]::Parse('$(UnigineLibVersion)').Revision)</VersionRevision>
</PropertyGroup>
<PropertyGroup Condition="'$(UnigineLibVersion)' != ''">
<DefineConstants>$(DefineConstants);UNIGINE;UNIGINE_VERSION_MAJOR_$(VersionMajor);UNIGINE_VERSION_MINOR_$(VersionMinor);UNIGINE_VERSION_PATCH_$(VersionPatch);UNIGINE_VERSION_REVISION_$(VersionRevision);UNIGINE_VERSION_$(VersionMajor)_$(VersionMinor)_$(VersionPatch)_$(VersionRevision)</DefineConstants>
</PropertyGroup>
</Target>
</Project>