This repository was archived by the owner on May 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSimple.Ux.Data.csproj
More file actions
22 lines (17 loc) · 1.41 KB
/
Simple.Ux.Data.csproj
File metadata and controls
22 lines (17 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>9</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\ECSBAM\Meep.Tech.Data\Meep.Tech.Data.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy "bin\Debug\netstandard2.1\Simple.Ux.Data.dll" "..\..\..\..\..\..\apps\unity\Overworld\Assets\Packages\SimpleUx\Data\" /y" />
<Exec Command="xcopy "bin\Debug\netstandard2.1\Simple.Ux.Data.pdb" "..\..\..\..\..\..\apps\unity\Overworld\Assets\Packages\SimpleUx\Data\" /y" />
<Exec Command="xcopy "bin\Debug\netstandard2.1\Simple.Ux.Data.deps.json" "..\..\..\..\..\..\apps\unity\Overworld\Assets\Packages\SimpleUx\Data\" /y" />
<Exec Command="xcopy "bin\Debug\netstandard2.1\Simple.Ux.Data.dll" "..\..\..\..\..\..\apps\unity\Overworld Launcher\Assets\Packages\SimpleUx\Data\" /y" />
<Exec Command="xcopy "bin\Debug\netstandard2.1\Simple.Ux.Data.pdb" "..\..\..\..\..\..\apps\unity\Overworld Launcher\Assets\Packages\SimpleUx\Data\" /y" />
<Exec Command="xcopy "bin\Debug\netstandard2.1\Simple.Ux.Data.deps.json" "..\..\..\..\..\..\apps\unity\Overworld Launcher\Assets\Packages\SimpleUx\Data\" /y" />
</Target>
</Project>