set up ignore for data files and venv

This commit is contained in:
Sakimori 2021-04-22 12:45:30 -04:00
parent 6fe261d731
commit a31dfee4a8
2 changed files with 19 additions and 1 deletions

8
.gitignore vendored
View file

@ -360,4 +360,10 @@ MigrationBackup/
.ionide/
# Fody - auto-generated XML schema
FodyWeavers.xsd
FodyWeavers.xsd
# user files
ConfigFiles/
env/
GroundControlFiles/
SatFiles/

View file

@ -11,6 +11,7 @@
<OutputPath>.</OutputPath>
<Name>BoSLOO</Name>
<RootNamespace>BoSLOO</RootNamespace>
<InterpreterId>MSBuild|BoSLOOenv|$(MSBuildProjectFullPath)</InterpreterId>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
@ -23,6 +24,17 @@
<ItemGroup>
<Compile Include="OrbitSim.py" />
</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" />
<!-- Uncomment the CoreCompile target to enable the Build command in
Visual Studio and specify your pre- and post-build commands in