-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApps.csproj
35 lines (30 loc) · 1.03 KB
/
Apps.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
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TypeScriptToolsVersion>latest</TypeScriptToolsVersion>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<RootNamespace>Apps</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ServiceStack" Version="8.*" />
</ItemGroup>
<ItemGroup>
<Folder Include="files\java" />
<Folder Include="wwwroot\explorer" />
<Folder Include="wwwroot\projects" />
</ItemGroup>
<ItemGroup>
<None Update="files\java\gradlew.bat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="files\java\gradlew">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="files\kotlin\gradlew.bat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="files\kotlin\gradlew">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>