set up ignore for data files and venv
This commit is contained in:
parent
6fe261d731
commit
a31dfee4a8
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -360,4 +360,10 @@ MigrationBackup/
|
||||||
.ionide/
|
.ionide/
|
||||||
|
|
||||||
# Fody - auto-generated XML schema
|
# Fody - auto-generated XML schema
|
||||||
FodyWeavers.xsd
|
FodyWeavers.xsd
|
||||||
|
|
||||||
|
# user files
|
||||||
|
ConfigFiles/
|
||||||
|
env/
|
||||||
|
GroundControlFiles/
|
||||||
|
SatFiles/
|
|
@ -11,6 +11,7 @@
|
||||||
<OutputPath>.</OutputPath>
|
<OutputPath>.</OutputPath>
|
||||||
<Name>BoSLOO</Name>
|
<Name>BoSLOO</Name>
|
||||||
<RootNamespace>BoSLOO</RootNamespace>
|
<RootNamespace>BoSLOO</RootNamespace>
|
||||||
|
<InterpreterId>MSBuild|BoSLOOenv|$(MSBuildProjectFullPath)</InterpreterId>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
@ -23,6 +24,17 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="OrbitSim.py" />
|
<Compile Include="OrbitSim.py" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Interpreter Include="env\BoSLOOenv\">
|
||||||
|
<Id>BoSLOOenv</Id>
|
||||||
|
<Version>3.8</Version>
|
||||||
|
<Description>BoSLOOenv (Python 3.8 (32-bit))</Description>
|
||||||
|
<InterpreterPath>Scripts\python.exe</InterpreterPath>
|
||||||
|
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
|
||||||
|
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
|
||||||
|
<Architecture>X86</Architecture>
|
||||||
|
</Interpreter>
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
|
||||||
<!-- Uncomment the CoreCompile target to enable the Build command in
|
<!-- Uncomment the CoreCompile target to enable the Build command in
|
||||||
Visual Studio and specify your pre- and post-build commands in
|
Visual Studio and specify your pre- and post-build commands in
|
||||||
|
|
Loading…
Reference in a new issue