-
-
Notifications
You must be signed in to change notification settings - Fork 957
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #649 from xen2/stride
Rename Xenko to Stride
- Loading branch information
Showing
14,586 changed files
with
320,303 additions
and
320,390 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
*.nupkg | ||
XenkoSetup*.exe | ||
StrideSetup*.exe | ||
/TestResults |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
@echo off | ||
setlocal | ||
rmdir /S /Q "%LOCALAPPDATA%\temp\Stride" | ||
REM ------------------------------------------------------------------- | ||
REM Global config | ||
REM ------------------------------------------------------------------- | ||
set STRIDE_OUTPUT_DIR=%~dp0\..\Bin | ||
set STRIDE_VSIX=%STRIDE_OUTPUT_DIR%\VSIX\Stride.vsix | ||
REM ------------------------------------------------------------------- | ||
REM Build Stride | ||
REM ------------------------------------------------------------------- | ||
IF EXIST "%STRIDE_VSIX%" GOTO :vsixok | ||
echo Error, unable to find Stride VSIX [%STRIDE_VSIX%] | ||
echo Run 00-BuildStride.bat before trying to install the VisualStudio package | ||
pause | ||
exit /b 1 | ||
:vsixok | ||
"%STRIDE_VSIX%" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
CALL "C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsDevCmd.bat" | ||
msbuild Xenko.build /p:XenkoGenerateDoc=true /t:BuildWindows > NUL | ||
msbuild Stride.build /p:StrideGenerateDoc=true /t:BuildWindows > NUL | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
CALL "%VS140COMNTOOLS%VsDevCmd.bat" | ||
msbuild Xenko.build /p:XenkoGenerateDoc=true /t:BuildWindows > NUL | ||
msbuild Stride.build /p:StrideGenerateDoc=true /t:BuildWindows > NUL | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
set StridePlatforms=Windows;UWP;Android;iOS;Linux | ||
Stride.sln |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<!-- Build file pre-included by all Stride projects --> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<StrideCommonPreSettingsName>Stride</StrideCommonPreSettingsName> | ||
<StridePlatforms Condition="'$(StridePlatforms)' == ''">Windows;Android</StridePlatforms> | ||
</PropertyGroup> | ||
</Project> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project DefaultTargets="SignAndroidPackage" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir> | ||
<SolutionName>Stride.Android</SolutionName> | ||
<Platform>Android</Platform> | ||
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectsToBuild Include="..\sources\**\*.Android.csproj"/> | ||
</ItemGroup> | ||
|
||
<Target Name="SignAndroidPackage"> | ||
<MSBuild Projects ="@(ProjectsToBuild)" | ||
Targets="SignAndroidPackage" | ||
Properties="Configuration=$(Configuration);Platform=$(Platform);SolutionName=$(SolutionName);SolutionDir=$(SolutionDir);AndroidDeploymentMode=AndroidAPKDeployment"> | ||
<Output ItemName="OutputFiles" TaskParameter="TargetOutputs"/> | ||
</MSBuild> | ||
</Target> | ||
</Project> |
Oops, something went wrong.